summaryrefslogtreecommitdiff
path: root/src/main/java/jp/plusplus/fbs/AchievementInsanity.java
blob: 3978c3dcb8949ccb022de460f01240e3ef38b415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package jp.plusplus.fbs;

import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.Achievement;

/**
 * Created by plusplus_F on 2015/11/30.
 */
public class AchievementInsanity extends Achievement {
    public AchievementInsanity(String name, int x, int y, ItemStack icon, Achievement parent) {
        super(FBS.MODID+":"+name, "fbs."+name, x, y+3, icon, parent);
        registerStat();
    }
}