started research skills

This commit is contained in:
2024-03-29 10:25:53 -05:00
parent f57f7f5540
commit 39157dded2
29 changed files with 1282 additions and 19 deletions

View File

@@ -33,6 +33,9 @@ func get_resource() -> GameResource:
func has_resource() -> bool:
return has_layer(Constants.TilemapLayers.ENVIRONMENT)
func get_building() -> BuildingBase:
return layer_info[Constants.TilemapLayers.BUILDINGS] as BuildingBase
func has_building() -> bool:
return has_layer(Constants.TilemapLayers.BUILDINGS)