aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/JungleBiome.h
blob: 115afb5d8ee5a5342557faad1d30ed037f7012e8 (plain)
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);
};