]> git.localhorst.tv Git - blank.git/blobdiff - src/world/ChunkRenderer.hpp
model -> mesh
[blank.git] / src / world / ChunkRenderer.hpp
index d45d0fd415f3f57f05ad209299fd0f0a7d256d4e..714bb847f5655495ea979ca6cc4ca07a4b2a9063 100644 (file)
@@ -4,7 +4,7 @@
 #include "Block.hpp"
 #include "Chunk.hpp"
 #include "../graphics/ArrayTexture.hpp"
-#include "../model/BlockModel.hpp"
+#include "../graphics/BlockMesh.hpp"
 
 #include <vector>
 
@@ -12,7 +12,7 @@
 namespace blank {
 
 class AssetLoader;
-class BlockModel;
+class BlockMesh;
 class ChunkIndex;
 class TextureIndex;
 class Viewport;
@@ -34,7 +34,7 @@ public:
 
 private:
        ChunkIndex &index;
-       std::vector<BlockModel> models;
+       std::vector<BlockMesh> models;
 
        ArrayTexture block_tex;