cn.nukkit.item.ItemItemFrame Maven / Gradle / Ivy
package cn.nukkit.item;
import cn.nukkit.block.Block;
import cn.nukkit.block.BlockID;
/**
* @author Pub4Game
* @since 03.07.2016
*/
public class ItemItemFrame extends Item {
public ItemItemFrame() {
this(0, 1);
}
public ItemItemFrame(Integer meta) {
this(meta, 1);
}
public ItemItemFrame(Integer meta, int count) {
super(ITEM_FRAME, meta, count, "Item Frame");
this.block = Block.get(BlockID.ITEM_FRAME_BLOCK);
}
}