summaryrefslogtreecommitdiff
path: root/Scripts/GameLoop.gd
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2024-04-13 18:49:03 +0700
committeraltaf-creator <dev@altafcreator.com>2024-04-13 18:49:03 +0700
commitc5a806528af8a4de5f903d26cd33edb7e0bb6597 (patch)
tree619f07a7a7f8b2e65fc97e9f04212d2c7c8c686e /Scripts/GameLoop.gd
parent24f5e910dd8f575adc483f768422ab51fdf905cc (diff)
unfinished map generator
Diffstat (limited to 'Scripts/GameLoop.gd')
-rw-r--r--Scripts/GameLoop.gd11
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