summaryrefslogtreecommitdiff
path: root/scene.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene.h')
-rw-r--r--scene.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/scene.h b/scene.h
index 7ae50b8..9e34e56 100644
--- a/scene.h
+++ b/scene.h
@@ -2,15 +2,21 @@
#define SCENE_H
#include "vector.h"
+#include "quadtree.h"
class Scene {
public:
float pitch, yaw;
Vector3 pos;
float yvel;
+ Quadtree *qt;
+
+ Scene();
+ ~Scene();
void lookat();
void move(float forward, float right, int steps);
+ bool select(int x, int y, float& px, float& py, float& pz);
};
#endif