15 lines
465 B
Java
Executable file
15 lines
465 B
Java
Executable file
package powercrystals.minefactoryreloaded.api;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
/**
|
|
* @author PowerCrystals
|
|
* <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.
|
|
*/
|
|
public interface IToolHammerAdvanced {
|
|
public boolean isActive(ItemStack stack);
|
|
}
|