aboutsummaryrefslogtreecommitdiff
path: root/scripts/globals.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/globals.gd')
-rw-r--r--scripts/globals.gd24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/globals.gd b/scripts/globals.gd
new file mode 100644
index 0000000..8c66f03
--- /dev/null
+++ b/scripts/globals.gd
@@ -0,0 +1,24 @@
+extends Node
+
+enum PlayerState {
+ PICK,
+ PLACE,
+ EDIT
+}
+
+enum StateType {
+ TURRET,
+ ATTACH,
+ PATH,
+ VOXEL,
+ VOXEL_PALETTE
+}
+
+enum PlayerActions {
+ CHANGE_TYPE,
+ PICK,
+ PLACE,
+ SELECT,
+ DELETE,
+ CANCEL
+}