Diffstat (limited to 'global_vars.gd')
-rw-r--r--global_vars.gd12
1 files changed, 12 insertions, 0 deletions
diff --git a/global_vars.gd b/global_vars.gd
new file mode 100644
index 0000000..5847804
--- /dev/null
+++ b/global_vars.gd
@@ -0,0 +1,12 @@
+extends Node
+
+const size = Vector2(70, 70)
+enum type {normal, unnormal}
+enum states {player_turn, level_turn}
+
+var turns_used = 0
+var state = states.level_turn
+
+
+const height = 8
+const width = 8