Added missing fields and imports

This commit is contained in:
tcooc 2012-09-10 21:29:04 -05:00
parent a65b768f34
commit 2ce657e4aa
2 changed files with 4 additions and 0 deletions

View file

@ -12,6 +12,7 @@ package buildcraft.builders;
import java.util.ArrayList; import java.util.ArrayList;
import net.minecraft.src.BlockContainer; import net.minecraft.src.BlockContainer;
import net.minecraft.src.CreativeTabs;
import net.minecraft.src.EntityLiving; import net.minecraft.src.EntityLiving;
import net.minecraft.src.EntityPlayer; import net.minecraft.src.EntityPlayer;
import net.minecraft.src.Item; import net.minecraft.src.Item;

View file

@ -16,6 +16,7 @@ import buildcraft.core.blueprints.BptBase;
import buildcraft.core.gui.BuildCraftContainer; import buildcraft.core.gui.BuildCraftContainer;
import net.minecraft.src.EntityPlayer; import net.minecraft.src.EntityPlayer;
import net.minecraft.src.ICrafting;
import net.minecraft.src.IInventory; import net.minecraft.src.IInventory;
import net.minecraft.src.Slot; import net.minecraft.src.Slot;
@ -25,6 +26,8 @@ public class ContainerBlueprintLibrary extends BuildCraftContainer {
protected IInventory playerInventory; protected IInventory playerInventory;
protected TileBlueprintLibrary library; protected TileBlueprintLibrary library;
private int progressIn, progressOut;
public ContainerBlueprintLibrary(EntityPlayer player, TileBlueprintLibrary library) { public ContainerBlueprintLibrary(EntityPlayer player, TileBlueprintLibrary library) {
super(library.getSizeInventory()); super(library.getSizeInventory());