godot-singleton/game_state.gd

12 lines
229 B
GDScript

extends Node
# Called when the node enters the scene tree for the first time.
func _ready():
print("Game State Ready")
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass