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

class HugeMushroomFeature : public Feature
{
private:
	int forcedType;

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