X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fclient%2FInteractiveState.hpp;h=d36472d4855a2cd34feddf76174966589cd50910;hb=68f47f2824989b21ff9a480a367a6d0a41804f41;hp=65c92d08ff33ab905421201621c575a1ce333250;hpb=4e3d9c23940c4511623b5bf328cbbe42641c4b30;p=blank.git diff --git a/src/client/InteractiveState.hpp b/src/client/InteractiveState.hpp index 65c92d0..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; @@ -37,8 +39,9 @@ private: BlockTypeRegistry block_types; WorldSave save; World world; - ChunkRenderer chunk_renderer; Interface interface; + ChunkRenderer chunk_renderer; + Skeletons skeletons; };