Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.List;
- import net.minecraft.src.Item;
- import net.minecraft.src.ItemStack;
- public interface IInformationAPI {
- /**
- * Called by InformationAPI, gives the the list to add information to
- *
- * @param itemstack The item stack
- * @param item Done for convince. Equivalent of "itemstack.getItem()"
- * @param list The information list
- */
- public abstract void addInformation(ItemStack itemstack, Item item, List list);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement