summaryrefslogtreecommitdiff
path: root/global.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2025-02-19 15:00:56 +0100
committerDaniel Weipert <git@mail.dweipert.de>2025-02-19 15:01:22 +0100
commitf0142a29c9a36d2b87b19b763d88c5ca2245c7dc (patch)
treeed8d45266bd329e1ad33c33bc11dc93741eebee2 /global.gd
parentf448ca4259d7f76fc58bc3b5c12ea8d04ab49a87 (diff)
next commit
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)