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

class TallGrassFeature : public Feature
{
private:
	int tile;
	int type;

public:
	TallGrassFeature (int tile, int type);

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