summaryrefslogtreecommitdiffstats
path: root/top.gd
diff options
context:
space:
mode:
Diffstat (limited to 'top.gd')
-rw-r--r--top.gd6
1 files changed, 6 insertions, 0 deletions
diff --git a/top.gd b/top.gd
index a4051b0..67f887f 100644
--- a/top.gd
+++ b/top.gd
@@ -30,3 +30,9 @@ func replace_active_room(new_room: Node, on_changed: Callable):
new_room.connect("tree_entered", on_changed)
new_room.process_mode = Node.PROCESS_MODE_PAUSABLE
add_child(new_room)
+
+func get_map() -> Map:
+ return $Map
+
+func get_transition_manager() -> TransitionManager:
+ return $TransitionManager