aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtnhlanth/common/item/ItemLanth.java
blob: 74f863a24abc83144c786dc501b82aaa59fda0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package gtnhlanth.common.item;

import net.minecraft.item.Item;

import gtnhlanth.Tags;

public class ItemLanth extends Item {

    public ItemLanth(String name) {
        super();
        this.setUnlocalizedName(name);
        this.setTextureName(Tags.MODID + ":" + name);
    }

}