X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fclient%2FInteractiveState.hpp;h=9b1ce52236309d23751286b037e2d80ead35701f;hb=d2eb51ad9759eeee743b04aee6f1ae69132fc706;hp=efaeae425c03d869ef8df008ebad386793138b72;hpb=13e676a6e49128ebc6c63b8dd08bef51d360e8e9;p=blank.git diff --git a/src/client/InteractiveState.hpp b/src/client/InteractiveState.hpp index efaeae4..9b1ce52 100644 --- a/src/client/InteractiveState.hpp +++ b/src/client/InteractiveState.hpp @@ -1,8 +1,10 @@ #ifndef BLANK_CLIENT_INTERACTIVESTATE_HPP_ #define BLANK_CLIENT_INTERACTIVESTATE_HPP_ +#include "../app/IntervalTimer.hpp" #include "../app/State.hpp" #include "../io/WorldSave.hpp" +#include "../model/Skeletons.hpp" #include "../ui/Interface.hpp" #include "../world/BlockTypeRegistry.hpp" #include "../world/ChunkRenderer.hpp" @@ -25,6 +27,7 @@ public: World &GetWorld() noexcept { return world; } Interface &GetInterface() noexcept { return interface; } + Skeletons &GetSkeletons() noexcept { return skeletons; } void OnEnter() override; @@ -39,6 +42,8 @@ private: World world; Interface interface; ChunkRenderer chunk_renderer; + Skeletons skeletons; + IntervalTimer update_timer; };