cn.nukkit.item.ItemShulkerShell Maven / Gradle / Ivy
package cn.nukkit.item;
public class ItemShulkerShell extends Item {
public ItemShulkerShell() {
this(0, 1);
}
public ItemShulkerShell(Integer meta) {
this(meta, 1);
}
public ItemShulkerShell(Integer meta, int count) {
super(SHULKER_SHELL, meta, count, "Shulker Shell");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy