2011-01-29 22:50:29 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public interface IInventory {
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
int q_();
|
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-03-31 22:40:00 +02:00
|
|
|
int r_();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
void i();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
boolean a_(EntityHuman entityhuman);
|
|
|
|
|
|
|
|
public abstract ItemStack[] getContents(); // CraftBukkit
|
|
|
|
}
|