Advertisement
Guest User

IInformationAPI

a guest
Sep 26th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. import java.util.List;
  2.  
  3. import net.minecraft.src.Item;
  4. import net.minecraft.src.ItemStack;
  5.  
  6. public interface IInformationAPI {
  7.     /**
  8.      * Called by InformationAPI, gives the the list to add information to
  9.      *
  10.      * @param itemstack The item stack
  11.      * @param item Done for convince. Equivalent of "itemstack.getItem()"
  12.      * @param list The information list
  13.      */
  14.     public abstract void addInformation(ItemStack itemstack, Item item, List list);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement