aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/GroundBushFeature.h
blob: cf7f16bb2665cfa97e51e16fbbee78f11c472c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "Feature.h"

class GroundBushFeature : public Feature
{
private:
	int leafTileType;
	int trunkTileType;

public:
	GroundBushFeature(int trunkType, int leafType);

	virtual bool place(Level *level, Random *random, int x, int y, int z);
};