X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp.hpp;h=413b6f19869430f22b665d690d4d8a67cd0ff50d;hb=46509f82dcea114b004c53a7f3a9608f2518077f;hp=6bd4e0d9a14a65e615eb62f9f14df5f8b33f5c9b;hpb=c3c5045f06327db2a3c97eae77a072bc06677286;p=blank.git diff --git a/src/app.hpp b/src/app.hpp index 6bd4e0d..413b6f1 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -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; };