123456789101112 |
- #include "GrasslandBiom.h"
- #include "BlockType.h"
- #include "BasicBlocks.h"
- GrasslandBiom::GrasslandBiom()
- : BiomGenerator( 1, 1, 1, 1, 1, 0.5, 0.25 )
- {}
- Framework::Either<Block*, int> GrasslandBiom::getBlock( Noise* zNoise, int x, int y, int z, Game* zGame )
- {
- return DirtBlockType::ID;
- }
|