summaryrefslogtreecommitdiff
path: root/lib/constants.h
diff options
context:
space:
mode:
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
-};