X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fstandalone%2FMasterState.hpp;h=04234e5ccea07d18eb99683e6cca088ee0e279c2;hb=3185bad87c06739e4ec19b456c7158437ba9621f;hp=942cc132e94a585bd6bcc066245f738daefe5cf3;hpb=80a9a59d71a7b144c12f64cbef4644751bd54745;p=blank.git diff --git a/src/standalone/MasterState.hpp b/src/standalone/MasterState.hpp index 942cc13..04234e5 100644 --- a/src/standalone/MasterState.hpp +++ b/src/standalone/MasterState.hpp @@ -4,12 +4,14 @@ #include "../app/State.hpp" #include "../ui/ClientController.hpp" +#include "DirectCLIFeedback.hpp" #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" @@ -62,6 +64,7 @@ public: void SetVideo(bool) override; void SetHUD(bool) override; void SetDebug(bool) override; + void NextCamera() override; void Exit() override; void OnLineSubmit(const std::string &) override; @@ -87,6 +90,9 @@ private: SkyBox sky; + CLI cli; + DirectCLIFeedback cli_ctx; + PreloadState preload; UnloadState unload; ChatState chat;