the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Biome.h"
4
5class ExtremeHillsBiome : public Biome
6{
7 friend class Biome;
8private:
9 static const bool GENERATE_EMERALD_ORE = true;
10 Feature *silverfishFeature;
11
12protected:
13 ExtremeHillsBiome(int id);
14 ~ExtremeHillsBiome();
15
16public:
17 void decorate(Level *level, Random *random, int xo, int zo);
18};