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

import net.minecraft.item.Item;

import com.elisis.gtnhlanth.Tags;

public class LanthItem extends Item {

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

}