diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-08-04 18:29:59 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-08-04 18:29:59 -0400 |
| commit | 9a5a9d9cb1f1cf507db8a401783179ff55a242e8 (patch) | |
| tree | 7e5cb81fd41a2b28d26a9d4933d1e1c242b91e00 /Menu.gd | |
| download | frivolous-run-9a5a9d9cb1f1cf507db8a401783179ff55a242e8.tar.gz frivolous-run-9a5a9d9cb1f1cf507db8a401783179ff55a242e8.tar.bz2 frivolous-run-9a5a9d9cb1f1cf507db8a401783179ff55a242e8.zip | |
Inital commit
Diffstat (limited to 'Menu.gd')
| -rw-r--r-- | Menu.gd | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ +extends MarginContainer + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass + + +func _on_Play_button_up(): + pass # Replace with function body. + + +func _on_Credits_button_up(): + pass # Replace with function body. + + +func _on_Quit_button_up(): + get_tree().quit() + pass # Replace with function body. |
