#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