added main memu

This commit is contained in:
Ultrablob 2024-04-17 15:00:20 -04:00
parent e446938ba7
commit ae936275b7
10 changed files with 224 additions and 8 deletions

8
ToggleableControl.gd Normal file
View file

@ -0,0 +1,8 @@
extends Label
func show():
show()
visible = true
func hide():
visible = false