mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 11:45:52 -07:00
Port to new mc-dev format.
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
package net.minecraft.server;
|
||||
|
||||
public interface IInventory {
|
||||
|
||||
public abstract int h_();
|
||||
|
||||
public abstract ItemStack a(int i);
|
||||
|
||||
public abstract ItemStack b(int i, int j);
|
||||
|
||||
public abstract void a(int i, ItemStack itemstack);
|
||||
|
||||
public abstract String b();
|
||||
|
||||
public abstract int c();
|
||||
|
||||
public abstract void d();
|
||||
|
||||
public abstract boolean a_(EntityPlayer entityplayer);
|
||||
|
||||
public abstract ItemStack[] getContents(); // CraftBukkit
|
||||
}
|
||||
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
|
||||
}
|
||||
|
Reference in New Issue
Block a user