]> git.localhorst.tv Git - blank.git/blobdiff - src/app.hpp
random walk test controller
[blank.git] / src / app.hpp
index 6bd4e0d9a14a65e615eb62f9f14df5f8b33f5c9b..413b6f19869430f22b665d690d4d8a67cd0ff50d 100644 (file)
@@ -2,6 +2,7 @@
 #define BLANK_APP_HPP_
 
 #include "camera.hpp"
+#include "controller.hpp"
 #include "init.hpp"
 #include "interface.hpp"
 #include "shader.hpp"
@@ -33,6 +34,8 @@ public:
        void Update(int dt);
        void Render();
 
+       static Entity &MakeTestEntity(World &);
+
 private:
        InitSDL init_sdl;
        InitIMG init_img;
@@ -46,6 +49,8 @@ private:
        World world;
        Interface interface;
 
+       RandomWalk test_controller;
+
        bool running;
 
 };