X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fclient%2FInteractiveState.hpp;h=d36472d4855a2cd34feddf76174966589cd50910;hb=d4c71969df4f6b5e6b750c98268d30ca6784908b;hp=efaeae425c03d869ef8df008ebad386793138b72;hpb=36923ee2defd0848c5a530721114d4e553872305;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; };