mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-10 22:23:35 +00:00
7 lines
237 B
C++
7 lines
237 B
C++
#include <BiomeCollection.h>
|
|
|
|
const std::array<std::uint32_t, CHUNK_SIZE.y> BiomeCollection::GetBiomeBlocks(std::string biome, std::uint32_t height, Scop::Vec2i pos) const
|
|
{
|
|
return m_collection.at(biome)->GetBiomeBlocks(height, pos);
|
|
}
|