Erik Broes a98c7ba2c7 Massive renaming update in nms. If you bypassed Bukkit, you will likely break.
Also minimized all the nms diffs and generic cleanups all around.
2011-06-27 00:47:03 +02:00

23 lines
378 B
Java

package net.minecraft.server;
public interface IInventory {
int getSize();
ItemStack getItem(int i);
ItemStack splitStack(int i, int j);
void setItem(int i, ItemStack itemstack);
String getName();
int getMaxStackSize();
void update();
boolean a_(EntityHuman entityhuman);
public abstract ItemStack[] getContents(); // CraftBukkit
}