]> git.localhorst.tv Git - blank.git/blobdiff - src/world/World.hpp
(hopefully) cross-platform directory functions
[blank.git] / src / world / World.hpp
index 10710fbd6667a2dc8ac957d8068dae4564a392ab..da02b1f25902f42dc4ba8774900005a57e9f071c 100644 (file)
@@ -48,7 +48,8 @@ public:
        bool Intersection(const Entity &e, std::vector<WorldCollision> &);
        void Resolve(Entity &e, std::vector<WorldCollision> &);
 
-       BlockTypeRegistry &BlockTypes() { return blockType; }
+       BlockTypeRegistry &BlockTypes() noexcept { return blockType; }
+       ChunkLoader &Loader() noexcept { return chunks; }
 
        Entity &Player() { return *player; }
        Entity &AddEntity() { entities.emplace_back(); return entities.back(); }