mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-31 03:02:58 +00:00
18 lines
337 B
C++
18 lines
337 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class ExtremeHillsBiome : public Biome {
|
|
friend class Biome;
|
|
|
|
private:
|
|
static const bool GENERATE_EMERALD_ORE = true;
|
|
Feature* silverfishFeature;
|
|
|
|
protected:
|
|
ExtremeHillsBiome(int id);
|
|
~ExtremeHillsBiome();
|
|
|
|
public:
|
|
void decorate(Level* level, Random* random, int xo, int zo);
|
|
}; |