Files
LegacyMultiplayerProject/Minecraft.World/GroundBushFeature.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

15 lines
260 B
C++

#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);
};