X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fclient%2FInteractiveState.hpp;h=d36472d4855a2cd34feddf76174966589cd50910;hb=68f47f2824989b21ff9a480a367a6d0a41804f41;hp=efaeae425c03d869ef8df008ebad386793138b72;hpb=13e676a6e49128ebc6c63b8dd08bef51d360e8e9;p=blank.git diff --git a/src/client/InteractiveState.hpp b/src/client/InteractiveState.hpp index efaeae4..d36472d 100644 --- a/src/client/InteractiveState.hpp +++ b/src/client/InteractiveState.hpp @@ -3,6 +3,7 @@ #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 +26,7 @@ public: World &GetWorld() noexcept { return world; } Interface &GetInterface() noexcept { return interface; } + Skeletons &GetSkeletons() noexcept { return skeletons; } void OnEnter() override; @@ -39,6 +41,7 @@ private: World world; Interface interface; ChunkRenderer chunk_renderer; + Skeletons skeletons; };