X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FChunk.hpp;h=f4f0bf006300d0c68b40e88b6aed65210ce29e96;hb=7bb75960dbf9bfdee9ac865384aca81791b3da5c;hp=535f7d76806f5a404e96282985f6e29ff8b96a98;hpb=7c2a8b8285278b8a3077b311d82f05ea0463a96e;p=blank.git diff --git a/src/world/Chunk.hpp b/src/world/Chunk.hpp index 535f7d7..f4f0bf0 100644 --- a/src/world/Chunk.hpp +++ b/src/world/Chunk.hpp @@ -20,7 +20,7 @@ class WorldCollision; class Chunk { public: - using Pos = glm::tvec3; + using Pos = glm::ivec3; public: explicit Chunk(const BlockTypeRegistry &) noexcept; @@ -131,7 +131,7 @@ public: int GetLight(const Pos &pos) const noexcept { return GetLight(ToIndex(pos)); } int GetLight(const Block::Pos &pos) const noexcept { return GetLight(ToIndex(pos)); } - float GetVertexLight(const Pos &, const BlockModel::Position &, const Model::Normal &) const noexcept; + float GetVertexLight(const Pos &, const BlockModel::Position &, const EntityModel::Normal &) const noexcept; bool Intersection( const Ray &ray,