2011-01-29 22:50:29 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public interface IInventory {
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
int m_();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
ItemStack c_(int i);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
ItemStack a(int i, int j);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
void a(int i, ItemStack itemstack);
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
String c();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
int n_();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
void h();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
boolean a_(EntityHuman entityhuman);
|
|
|
|
|
|
|
|
public abstract ItemStack[] getContents(); // CraftBukkit
|
|
|
|
}
|