Bit more cleanup

This commit is contained in:
2025-05-06 16:21:22 -05:00
parent 85a7ed99bf
commit 0dfb9743f6
51 changed files with 15 additions and 41 deletions

View File

@@ -0,0 +1,13 @@
extends Node
const MAPS:Dictionary[String, String] = {
"TestMap": "res://scenes/Maps/TestMap.tscn"
};
var currentMap:String = "";
func setMap(map:String) -> void:
if MAPS.has(map):
currentMap = map
else:
push_error("Map not found: " + map)