X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.hpp;h=973234916a3afa541c2f2e41a544ef455e340521;hb=79bff420037f150bd6efd2eef08bd06afafeb068;hp=9644794c1e7d54a9ff5bade9b0c9a0f9c155a5d5;hpb=745729c1935276e6f49d108a0a465214aa93c3cb;p=blank.git diff --git a/src/app/Application.hpp b/src/app/Application.hpp index 9644794..9732349 100644 --- a/src/app/Application.hpp +++ b/src/app/Application.hpp @@ -3,7 +3,7 @@ #include "Assets.hpp" #include "FrameCounter.hpp" -#include "../ai/RandomWalk.hpp" +#include "../ai/Spawner.hpp" #include "../audio/Audio.hpp" #include "../graphics/Viewport.hpp" #include "../ui/Interface.hpp" @@ -54,8 +54,6 @@ public: /// push the current state to display void Render(); - static Entity &MakeTestEntity(World &); - private: Window &window; Viewport viewport; @@ -66,7 +64,7 @@ private: World world; Interface interface; - RandomWalk test_controller; + Spawner spawner; bool running;