Prepping for map stuff

This commit is contained in:
2025-05-08 09:24:22 -05:00
parent cf149e676c
commit f079f43664
7 changed files with 15 additions and 43 deletions

8
scripts/Map/Map.gd Normal file
View File

@@ -0,0 +1,8 @@
class_name Map extends Node
@export var mapName:String = "Map"
@export var mapEnterEvent:Event = null
func _ready() -> void:
if mapEnterEvent:
mapEnterEvent.start()