cn.nukkit.block.BlockFenceGateBirch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.block;
import cn.nukkit.utils.BlockColor;
/**
* @author xtypr
* @since 2015/11/23
*/
public class BlockFenceGateBirch extends BlockFenceGate {
public BlockFenceGateBirch() {
this(0);
}
public BlockFenceGateBirch(int meta) {
super(meta);
}
@Override
public int getId() {
return FENCE_GATE_BIRCH;
}
@Override
public String getName() {
return "Birch Fence Gate";
}
@Override
public BlockColor getColor() {
return BlockColor.SAND_BLOCK_COLOR;
}
}