2013-06-14 06:44:53 +00:00
|
|
|
package powercrystals.minefactoryreloaded.api;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author PowerCrystals
|
2013-09-21 10:30:47 +00:00
|
|
|
* <p/>
|
|
|
|
* This interface is like IToolHammer, but is for items that change state on a per-stack basis. Implement this
|
|
|
|
* instead of IToolHammer - not both!
|
|
|
|
* <p/>
|
|
|
|
* This interface will replace IToolHammer in MC 1.6.
|
2013-06-14 06:44:53 +00:00
|
|
|
*/
|
2013-09-21 10:30:47 +00:00
|
|
|
public interface IToolHammerAdvanced {
|
|
|
|
public boolean isActive(ItemStack stack);
|
2013-06-14 06:44:53 +00:00
|
|
|
}
|