aboutsummaryrefslogtreecommitdiffstats
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h
index 6be9258..7755ef9 100644
--- a/src/player.h
+++ b/src/player.h
@@ -4,6 +4,7 @@
#ifndef PLAYER_H
#define PLAYER_H
+#define PLAYER_WIDTH 1.0
#define PLAYER_HEIGHT 2.0
#define PLAYER_SPEED 8.0
#define PLAYER_MAX_SELECT_DISTANCE 10.0
@@ -12,6 +13,9 @@ typedef struct {
Vector3 position;
Vector3 direction;
Vector3 velocity;
+
+ BoundingBox relativeBox;
+ BoundingBox box;
Camera camera;
Vector2 cameraAngle;