mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 09:34:42 +00:00
13 lines
210 B
C++
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);
|
|
};
|