diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Camera.h | 6 | ||||
-rw-r--r-- | src/Game.h | 2 | ||||
-rw-r--r-- | src/cimport.zig | 1 |
3 files changed, 4 insertions, 5 deletions
diff --git a/src/Camera.h b/src/Camera.h index 1aeb6ee..b4c06b4 100644 --- a/src/Camera.h +++ b/src/Camera.h @@ -25,9 +25,9 @@ #include "Quaternions.h" struct Camera { - XYZ position; - XYZ oldposition; - XYZ targetoffset; + struct XYZ position; + struct XYZ oldposition; + struct XYZ targetoffset; float rotation, rotation2; float oldrotation, oldrotation2; diff --git a/src/Game.h b/src/Game.h index 5933e3a..7e663ab 100644 --- a/src/Game.h +++ b/src/Game.h @@ -33,12 +33,12 @@ #include <GL/gl.h> #include <GLFW/glfw3.h> +#include "Camera.h" #include "Quaternions.h" #include "config.h" #include "misc.h" #ifdef __cplusplus -#include "Camera.h" #include "Skeleton.h" #include "Models.h" #include "Text.h" diff --git a/src/cimport.zig b/src/cimport.zig index efde6b7..b5d66e9 100644 --- a/src/cimport.zig +++ b/src/cimport.zig @@ -1,5 +1,4 @@ usingnamespace @cImport({ @cInclude("Game.h"); @cInclude("Constants.h"); - @cInclude("Quaternions.h"); }); |