BloodMagic/src/main/java/WayofTime/bloodmagic/api/iface/IActivatable.java
Nick cc66af7eb1 Allow Bound Sword to be enchanted
Also changes how the models are handled and changing activation states does not cause the "item change" animation.
2016-02-04 02:45:19 -08:00

10 lines
226 B
Java

package WayofTime.bloodmagic.api.iface;
import net.minecraft.item.ItemStack;
public interface IActivatable
{
boolean getActivated(ItemStack stack);
ItemStack setActivatedState(ItemStack stack, boolean activated);
}