aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/EndPodiumFeature.h
blob: fd231d3289d41f1680a4cf7fa05461ae9b001a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Feature.h"

class EndPodiumFeature : public Feature
{
private:
	int tile;
	//int m_iIndex;

public:
	EndPodiumFeature(int tile);
	virtual bool place(Level *level, Random *random, int x, int y, int z);

};