mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-27 05:38:11 +05:00
16 lines
266 B
C++
16 lines
266 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class ExtremeHillsBiome : public Biome
|
|
{
|
|
friend class Biome;
|
|
private:
|
|
static const bool GENERATE_EMERALD_ORE = true;
|
|
|
|
protected:
|
|
ExtremeHillsBiome(int id);
|
|
|
|
public:
|
|
void decorate(Level *level, Random *random, int xo, int zo);
|
|
}; |