diff options
Diffstat (limited to 'Scripts/GameLoop.gd')
-rw-r--r-- | Scripts/GameLoop.gd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Scripts/GameLoop.gd b/Scripts/GameLoop.gd new file mode 100644 index 0000000..ea5e157 --- /dev/null +++ b/Scripts/GameLoop.gd @@ -0,0 +1,11 @@ +extends Node +class_name GameLoop + +@export var turns : int + +# Called when the node enters the scene tree for the first time. +func _ready(): + GlobalVariables.gameloop = self + +func _process(_delta): + pass |