Files
MinecraftConsoles/Minecraft.World/HugeMushroomFeature.h

14 lines
252 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#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);
};