mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 09:34:42 +00:00
17 lines
343 B
C++
17 lines
343 B
C++
#include "stdafx.h"
|
|
#include "AetherBushTile.h"
|
|
#include "net.minecraft.world.level.h"
|
|
|
|
AetherBushTile::AetherBushTile(int id) : Bush(id)
|
|
{
|
|
}
|
|
|
|
AetherBushTile::AetherBushTile(int id, Material *material) : Bush(id, material)
|
|
{
|
|
}
|
|
|
|
bool AetherBushTile::mayPlaceOn(int tile)
|
|
{
|
|
return tile == Tile::aetherGrass_Id || tile == Tile::aetherDirt_Id;
|
|
}
|