summaryrefslogtreecommitdiff
path: root/src/main/java/ihl/processing/invslots/SlotInvSlotOutputInProgress.java
blob: 25c067300fd1da06531bb06db995aae78c45d70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package ihl.processing.invslots;

import ic2.core.slot.SlotInvSlot;
import ihl.flexible_cable.IronWorkbenchInvSlot;
import net.minecraft.entity.player.EntityPlayer;

public class SlotInvSlotOutputInProgress extends SlotInvSlot {

	public IronWorkbenchInvSlot invSlot;
	
	public SlotInvSlotOutputInProgress(IronWorkbenchInvSlot invSlot1, int index1,
			int xDisplayPosition1, int yDisplayPosition1) {
		super(invSlot1, index1, xDisplayPosition1, yDisplayPosition1);
		this.invSlot=invSlot1;
		
	}
	
	@Override
    public boolean canTakeStack(EntityPlayer player)
    {
        return this.invSlot.getCanTakeStack();
    }
}