mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-06-17 16:17:02 +08:00
16 lines
344 B
C++
16 lines
344 B
C++
#pragma once
|
|
|
|
namespace Cubed {
|
|
class ChunkGenerator;
|
|
class BiomeBuilder {
|
|
public:
|
|
BiomeBuilder() = default;
|
|
virtual ~BiomeBuilder() = default;
|
|
virtual ChunkGenerator& get_chunk_generator() = 0;
|
|
virtual void build_biome() = 0;
|
|
virtual void build_vegetation() = 0;
|
|
|
|
protected:
|
|
void build_bottom();
|
|
};
|
|
} // namespace Cubed
|