Added missing fields and imports
This commit is contained in:
parent
a65b768f34
commit
2ce657e4aa
2 changed files with 4 additions and 0 deletions
|
@ -12,6 +12,7 @@ package buildcraft.builders;
|
|||
import java.util.ArrayList;
|
||||
|
||||
import net.minecraft.src.BlockContainer;
|
||||
import net.minecraft.src.CreativeTabs;
|
||||
import net.minecraft.src.EntityLiving;
|
||||
import net.minecraft.src.EntityPlayer;
|
||||
import net.minecraft.src.Item;
|
||||
|
|
|
@ -16,6 +16,7 @@ import buildcraft.core.blueprints.BptBase;
|
|||
import buildcraft.core.gui.BuildCraftContainer;
|
||||
|
||||
import net.minecraft.src.EntityPlayer;
|
||||
import net.minecraft.src.ICrafting;
|
||||
import net.minecraft.src.IInventory;
|
||||
import net.minecraft.src.Slot;
|
||||
|
||||
|
@ -26,6 +27,8 @@ public class ContainerBlueprintLibrary extends BuildCraftContainer {
|
|||
protected IInventory playerInventory;
|
||||
protected TileBlueprintLibrary library;
|
||||
|
||||
private int progressIn, progressOut;
|
||||
|
||||
public ContainerBlueprintLibrary(EntityPlayer player, TileBlueprintLibrary library) {
|
||||
super(library.getSizeInventory());
|
||||
this.playerInventory = player.inventory;
|
||||
|
|
Loading…
Reference in a new issue