cn.nukkit.block.BlockJungleWallSign 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.api.PowerNukkitOnly;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemJungleSign;
@PowerNukkitOnly
public class BlockJungleWallSign extends BlockWallSign {
@PowerNukkitOnly
public BlockJungleWallSign() {
this(0);
}
@PowerNukkitOnly
public BlockJungleWallSign(int meta) {
super(meta);
}
@Override
public int getId() {
return JUNGLE_WALL_SIGN;
}
@Override
protected int getPostId() {
return JUNGLE_STANDING_SIGN;
}
@Override
public String getName() {
return "Jungle Wall Sign";
}
@Override
public Item toItem() {
return new ItemJungleSign();
}
}