aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/TheEndBiomeDecorator.h
blob: b9c790b3db65ae13c40005bd48de6fc03f87a387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "BiomeDecorator.h"

class TheEndBiomeDecorator : public BiomeDecorator
{
public:
	typedef struct  
	{
		int iChunkX;
		int iChunkZ;
		int x;
		int z;
		int radius;
	}
	SPIKE;	
	
	TheEndBiomeDecorator(Biome *biome);
protected:
	Feature *spikeFeature;
	Feature *endPodiumFeature;
	virtual void decorate();


	static SPIKE SpikeValA[8];
};