aboutsummaryrefslogtreecommitdiff
path: root/Menu.gd
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-08-04 18:29:59 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-08-04 18:29:59 -0400
commit9a5a9d9cb1f1cf507db8a401783179ff55a242e8 (patch)
tree7e5cb81fd41a2b28d26a9d4933d1e1c242b91e00 /Menu.gd
downloadfrivolous-run-9a5a9d9cb1f1cf507db8a401783179ff55a242e8.tar.gz
frivolous-run-9a5a9d9cb1f1cf507db8a401783179ff55a242e8.tar.bz2
frivolous-run-9a5a9d9cb1f1cf507db8a401783179ff55a242e8.zip
Inital commit
Diffstat (limited to 'Menu.gd')
-rw-r--r--Menu.gd29
1 files changed, 29 insertions, 0 deletions
diff --git a/Menu.gd b/Menu.gd
new file mode 100644
index 0000000..4a20621
--- /dev/null
+++ b/Menu.gd
@@ -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.