This commit is contained in:
MihailRis
2024-08-24 08:15:14 +03:00
parent 0c4f96d620
commit c2ac6ac54a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ std::unique_ptr<ChunkPrototype> WorldGenerator::generatePrototype(
} }
} }
return std::make_unique<ChunkPrototype>( return std::make_unique<ChunkPrototype>(
ChunkPrototypeLevel::HEIGHTMAP, ChunkPrototypeLevel::BIOMES,
nullptr, nullptr,
std::move(chunkBiomes)); std::move(chunkBiomes));
} }
+1 -1
View File
@@ -14,7 +14,7 @@ class Heightmap;
struct Biome; struct Biome;
enum class ChunkPrototypeLevel { enum class ChunkPrototypeLevel {
BIOME, HEIGHTMAP BIOMES, HEIGHTMAP
}; };
struct ChunkPrototype { struct ChunkPrototype {