Files
MinecraftCommunityEdition-c…/Minecraft.World/AetherBushTile.h
2026-03-03 11:12:53 -06:00

13 lines
210 B
C++

#pragma once
#include "Bush.h"
class AetherBushTile : public Bush
{
friend class Tile;
protected:
AetherBushTile(int id);
AetherBushTile(int id, Material *material);
virtual bool mayPlaceOn(int tile);
};