Update for 1.4_00_01 -- if you bypassed Bukkit, you will most likely break.

This commit is contained in:
Erik Broes
2011-04-20 19:05:14 +02:00
parent ac9f297445
commit 483a878b8b
116 changed files with 3155 additions and 3207 deletions

View File

@@ -2,19 +2,19 @@ package net.minecraft.server;
public interface IInventory {
int q_();
int getSize();
ItemStack c_(int i);
ItemStack getItem(int i);
ItemStack a(int i, int j);
void a(int i, ItemStack itemstack);
void setItem(int i, ItemStack itemstack);
String c();
String getName();
int r_();
int getMaxStackSize();
void i();
void update();
boolean a_(EntityHuman entityhuman);