summaryrefslogtreecommitdiff
path: root/scene.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene.h')
-rw-r--r--scene.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/scene.h b/scene.h
new file mode 100644
index 0000000..7ae50b8
--- /dev/null
+++ b/scene.h
@@ -0,0 +1,16 @@
+#ifndef SCENE_H
+#define SCENE_H
+
+#include "vector.h"
+
+class Scene {
+ public:
+ float pitch, yaw;
+ Vector3 pos;
+ float yvel;
+
+ void lookat();
+ void move(float forward, float right, int steps);
+};
+
+#endif