12 lines
371 B
Java
12 lines
371 B
Java
![]() |
package WayofTime.alchemicalWizardry.common.achievements;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.inventory.IInventory;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.stats.Achievement;
|
||
|
|
||
|
public interface ICraftAchievement
|
||
|
{
|
||
|
public Achievement getAchievementOnCraft(ItemStack stack, EntityPlayer player, IInventory matrix);
|
||
|
}
|