cn.nukkit.block.BlockFenceGateAcacia 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 BlockFenceGateAcacia extends BlockFenceGate {
public BlockFenceGateAcacia() {
this(0);
}
public BlockFenceGateAcacia(int meta) {
super(meta);
}
@Override
public int getId() {
return FENCE_GATE_ACACIA;
}
@Override
public String getName() {
return "Acacia Fence Gate";
}
@Override
public BlockColor getColor() {
return BlockColor.ORANGE_BLOCK_COLOR;
}
}