diff options
| author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-03-30 22:30:35 +0200 |
|---|---|---|
| committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-03-30 22:30:35 +0200 |
| commit | d8a69e6abeea2034c17d84ef74009b137faa06cc (patch) | |
| tree | 7ed3fbd07adc8328aba71cfb26ffc3eb5ff5ebf7 /scene.h | |
Initial commit.
Diffstat (limited to 'scene.h')
| -rw-r--r-- | scene.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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 |
