mirror of
https://github.com/Relintai/broken_seals_roguelike.git
synced 2024-11-14 10:57:19 +01:00
8 lines
160 B
GDScript
8 lines
160 B
GDScript
extends Button
|
|
|
|
func _ready():
|
|
connect("pressed", self, "on_click")
|
|
|
|
func on_click() -> void:
|
|
get_node("/root/Main").switch_scene(Main.StartSceneTypes.MENU)
|