X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.h;h=17fdce8c84b77f7074477563dd67bf9eef203e8d;hb=501ffe20da16eaab69e668871001f735697c4a42;hp=7e3d91bc8b1ff7e9cb4c43d4ff6d438bf9b71f77;hpb=699437a474de8b87ccb6749d44adf740e680d620;p=space.git diff --git a/src/app/Application.h b/src/app/Application.h index 7e3d91b..17fdce8 100644 --- a/src/app/Application.h +++ b/src/app/Application.h @@ -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 @@ -44,8 +46,15 @@ private: Ship *controlled; Vector control; + DualGauge linGauge; + DualGauge rotGauge; + + Autopilot autopilot; + bool apEnabled;; + Uint32 last; bool running; + bool paused; };