]> git.localhorst.tv Git - space.git/blobdiff - src/app/Application.h
controlled entity
[space.git] / src / app / Application.h
index a85269612257269349b6955fb4c85f2968cc4224..61c3f45a5ab7e8ebe3ed740643e7097e17ee1246 100644 (file)
@@ -12,6 +12,7 @@
 namespace space {
 
 class InitScreen;
+class Entity;
 
 class Application {
 
@@ -30,8 +31,6 @@ private:
 
        void Update(int delta_ms);
 
-       Vector<float> FocusVel() const;
-
        void Render();
 
 private:
@@ -42,6 +41,9 @@ private:
        Moveable<float> focus;
        Camera cam;
 
+       Entity *controlled;
+       Vector<int> control;
+
        Uint32 last;
        bool running;