summaryrefslogtreecommitdiff
path: root/lib/constants.h
diff options
context:
space:
mode:
authorJoel Stålnacke <joel@saker.fi>2026-03-23 19:50:18 +0200
committerJoel Stålnacke <joel@saker.fi>2026-03-23 19:50:18 +0200
commit3a1f9fe6800ef5fe7bbf1c0a5976720383ba84fe (patch)
treef1218eb4085a654f6bb70671b41b4a74e646c052 /lib/constants.h
parent3870982f640260822bf605e693782ce9f5d79cf6 (diff)
Rewrite native code in Odin and use ECSodin
Diffstat (limited to 'lib/constants.h')
-rw-r--r--lib/constants.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/constants.h b/lib/constants.h
deleted file mode 100644
index 817fa43..0000000
--- a/lib/constants.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#define WORLD_MAX_PLAYERS 5
-#define WORLD_MAX_BULLETS 5000
-
-#define PLAYER_ACCELERATION 150.0f
-#define PLAYER_DRAG 2.0f
-
-enum {
- INPUT_UP = 1 << 0,
- INPUT_DOWN = 1 << 1,
- INPUT_LEFT = 1 << 2,
- INPUT_RIGHT = 1 << 3
-};