summaryrefslogtreecommitdiff
path: root/global.gd
diff options
context:
space:
mode:
Diffstat (limited to 'global.gd')
-rw-r--r--global.gd8
1 files changed, 8 insertions, 0 deletions
diff --git a/global.gd b/global.gd
new file mode 100644
index 0000000..40d0954
--- /dev/null
+++ b/global.gd
@@ -0,0 +1,8 @@
+extends Node
+
+
+var player: Player
+var mutex := Mutex.new()
+
+var chunks: Dictionary[Vector3i, Chunk] = {}
+var CHUNK_SIZE := Vector3i(16, 16, 16)