DeathChests/src/main/java/lostcave/deathchests/item/ItemObituary.java

22 lines
466 B
Java

package lostcave.deathchests.item;
import net.minecraft.item.Item;
public class ItemObituary extends Item {
private static final ItemObituary instance = new ItemObituary();
public static ItemObituary getInstance() {
return instance;
}
private ItemObituary() {
this.setUnlocalizedName("obituary");
this.setTextureName("paper");
}
//TODO: NBT data
//TODO: right click action
//TODO: item description
}