summaryrefslogtreecommitdiff
path: root/src/game/camera.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/camera.h')
-rw-r--r--src/game/camera.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/camera.h b/src/game/camera.h
new file mode 100644
index 0000000..b9fe402
--- /dev/null
+++ b/src/game/camera.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "../util/vector.h"
+
+struct PLAYER_CAMERA {
+ VEC3 pos;
+ VEC3 rot;
+ F32 fov;
+};