mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
11 lines
146 B
GDScript3
11 lines
146 B
GDScript3
|
extends Control
|
||
|
|
||
|
func _ready():
|
||
|
pass
|
||
|
|
||
|
func quit():
|
||
|
get_tree().quit()
|
||
|
|
||
|
func levels():
|
||
|
get_tree().change_scene("res://scenes/level_select.tscn")
|