]> git.localhorst.tv Git - space.git/blobdiff - src/app/Application.h
added autopilot that sucks
[space.git] / src / app / Application.h
index 7e3d91bc8b1ff7e9cb4c43d4ff6d438bf9b71f77..4d2dd2dbf38f6545320d7e92cf7c85e4d40306f0 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef SPACE_APPLICATION_H_
 #define SPACE_APPLICATION_H_
 
+#include "../ai/Autopilot.h"
 #include "../graphics/Camera.h"
 #include "../graphics/Moveable.h"
 #include "../graphics/Vector.h"
@@ -44,8 +45,12 @@ private:
        Ship *controlled;
        Vector<int> control;
 
+       Autopilot autopilot;
+       bool apEnabled;;
+
        Uint32 last;
        bool running;
+       bool paused;
 
 };