X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fstandalone%2FMasterState.hpp;h=9cb095ac1eb8d7d048bc12481e25227ca3feb287;hb=56069d41c1553d87a8759713ef391d3a908adc0e;hp=173c07cdd1e8208dd5939efb9b5842311a449650;hpb=54f3f1260b95a924fcb40d9d6de3fa2e2c382f6f;p=blank.git diff --git a/src/standalone/MasterState.hpp b/src/standalone/MasterState.hpp index 173c07c..9cb095a 100644 --- a/src/standalone/MasterState.hpp +++ b/src/standalone/MasterState.hpp @@ -7,9 +7,10 @@ #include "PreloadState.hpp" #include "UnloadState.hpp" #include "../ai/Spawner.hpp" -#include "../app/ChatState.hpp" #include "../audio/SoundBank.hpp" #include "../graphics/SkyBox.hpp" +#include "../shared/ChatState.hpp" +#include "../shared/CLI.hpp" #include "../shared/WorldResources.hpp" #include "../ui/DirectInput.hpp" #include "../ui/HUD.hpp" @@ -48,6 +49,9 @@ public: void OnResume() override; void OnPause() override; + void OnFocus() override; + void OnBlur() override; + void Handle(const SDL_Event &) override; void Update(int dt) override; void Render(Viewport &) override; @@ -84,6 +88,8 @@ private: SkyBox sky; + CLI cli; + PreloadState preload; UnloadState unload; ChatState chat;