GrasslandBiom.cpp 298 B

123456789101112
  1. #include "GrasslandBiom.h"
  2. #include "BlockType.h"
  3. #include "BasicBlocks.h"
  4. GrasslandBiom::GrasslandBiom()
  5. : BiomGenerator( 1, 1, 1, 1, 1, 0.5, 0.25 )
  6. {}
  7. Framework::Either<Block*, int> GrasslandBiom::getBlock( Noise* zNoise, int x, int y, int z, Game* zGame )
  8. {
  9. return DirtBlockType::ID;
  10. }