]> git.localhorst.tv Git - space.git/blobdiff - src/app/Application.h
less sucky autopilot
[space.git] / src / app / Application.h
index 7e3d91bc8b1ff7e9cb4c43d4ff6d438bf9b71f77..17fdce8c84b77f7074477563dd67bf9eef203e8d 100644 (file)
@@ -1,9 +1,11 @@
 #ifndef SPACE_APPLICATION_H_
 #define SPACE_APPLICATION_H_
 
+#include "../ai/Autopilot.h"
 #include "../graphics/Camera.h"
 #include "../graphics/Moveable.h"
 #include "../graphics/Vector.h"
+#include "../ui/DualGauge.h"
 #include "../world/Universe.h"
 
 #include <SDL.h>
@@ -44,8 +46,15 @@ private:
        Ship *controlled;
        Vector<int> control;
 
+       DualGauge linGauge;
+       DualGauge rotGauge;
+
+       Autopilot autopilot;
+       bool apEnabled;;
+
        Uint32 last;
        bool running;
+       bool paused;
 
 };