mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-31 22:30:15 +00:00
22 lines
327 B
Java
22 lines
327 B
Java
package net.minecraft.server;
|
|
|
|
public interface IInventory {
|
|
|
|
int h_();
|
|
|
|
ItemStack a(int i);
|
|
|
|
ItemStack b(int i, int j);
|
|
|
|
void a(int i, ItemStack itemstack);
|
|
|
|
String b();
|
|
|
|
int c();
|
|
|
|
void d();
|
|
|
|
boolean a_(EntityHuman entityhuman);
|
|
|
|
public abstract ItemStack[] getContents(); // CraftBukkit
|
|
}
|