diff options
Diffstat (limited to 'src/Camera.h')
-rw-r--r-- | src/Camera.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Camera.h b/src/Camera.h index 7746537..1aeb6ee 100644 --- a/src/Camera.h +++ b/src/Camera.h @@ -22,12 +22,9 @@ #ifndef BLACKSHADES_CAMERA_H #define BLACKSHADES_CAMERA_H -#include <GL/gl.h> - #include "Quaternions.h" -class Camera { -public: +struct Camera { XYZ position; XYZ oldposition; XYZ targetoffset; @@ -35,7 +32,6 @@ public: float rotation, rotation2; float oldrotation, oldrotation2; float visrotation, visrotation2; - void Apply(); }; #endif // BLACKSHADES_CAMERA_H |