feat: add cave generate

This commit is contained in:
2026-05-08 19:42:38 +08:00
parent d986e03f9c
commit bab2f73c25
18 changed files with 332 additions and 11 deletions

View File

@@ -307,4 +307,5 @@ void Chunk::biome(BiomeType b) { m_biome = b; }
HeightMapArray& Chunk::heightmap() { return m_heightmap; }
std::vector<uint8_t>& Chunk::blocks() { return m_blocks; }
World& Chunk::world() { return m_world; }
} // namespace Cubed