mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-21 05:44:33 +00:00
22 lines
329 B
Java
22 lines
329 B
Java
package net.minecraft.server;
|
|
|
|
public interface IInventory {
|
|
|
|
int m_();
|
|
|
|
ItemStack c_(int i);
|
|
|
|
ItemStack a(int i, int j);
|
|
|
|
void a(int i, ItemStack itemstack);
|
|
|
|
String c();
|
|
|
|
int n_();
|
|
|
|
void h();
|
|
|
|
boolean a_(EntityHuman entityhuman);
|
|
|
|
public abstract ItemStack[] getContents(); // CraftBukkit
|
|
}
|