ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/util/IActAddItemOrBlock.java

26 lines
689 B
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2015-10-06 16:36:25 +02:00
* This file ("IActAddItemOrBlock.java") is part of the Actually Additions Mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-03-07 12:51:28 +01:00
package ellpeck.actuallyadditions.util;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
/**
* The indicator interface for any block or item that is part of ActuallyAdditions
*/
public interface IActAddItemOrBlock{
2015-03-29 15:29:05 +02:00
String getName();
EnumRarity getRarity(ItemStack stack);
}