add props

This commit is contained in:
2025-07-04 00:03:54 -05:00
parent 58126341ba
commit 7ae9d534ab
341 changed files with 212952 additions and 156 deletions

10
scripts/OverworldScene.gd Normal file
View File

@@ -0,0 +1,10 @@
class_name OverworldScene extends Node
func _enter_tree() -> void:
OVERWORLD.mapChanged.connect(onMapChanged)
func _exit_tree() -> void:
OVERWORLD.mapChanged.disconnect(onMapChanged)
func onMapChanged() -> void:
pass