1 2 3 4 5 6 7 8 9 10 11 12 13 14
#pragma once #include "Biome.h" class JungleBiome : public Biome { public: JungleBiome(int id); Feature *getTreeFeature(Random *random); Feature *getGrassFeature(Random *random); void decorate(Level *level, Random *random, int xo, int zo); };