
The new one is now built for the api jar and the old one is now internal. It will slowly be moved around to sane places within the internal code. Most of the features provided in the old "api" are addon specific features which will generally rely on the main jar anyways. The new API will be specific to compatibility features, such as blacklists, recipes, and value modification.
10 lines
238 B
Java
10 lines
238 B
Java
package WayofTime.bloodmagic.apibutnotreally.iface;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface IActivatable {
|
|
boolean getActivated(ItemStack stack);
|
|
|
|
ItemStack setActivatedState(ItemStack stack, boolean activated);
|
|
}
|