![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.block.BlockFenceGateJungle 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 BlockFenceGateJungle extends BlockFenceGate {
public BlockFenceGateJungle() {
this(0);
}
public BlockFenceGateJungle(int meta) {
super(meta);
}
@Override
public int getId() {
return FENCE_GATE_JUNGLE;
}
@Override
public String getName() {
return "Jungle Fence Gate";
}
@Override
public BlockColor getColor() {
return BlockColor.DIRT_BLOCK_COLOR;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy