Started Work on Pattern Terminal.

This commit is contained in:
AlgorithmX2
2014-04-07 19:43:57 -05:00
parent 2e103efab8
commit 85b3a5ef32
10 changed files with 353 additions and 4 deletions
+25
View File
@@ -0,0 +1,25 @@
package appeng.container.slot;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
public class SlotPatternTerm extends AppEngSlot
{
public SlotPatternTerm(IInventory inv, int idx, int x, int y) {
super( inv, idx, x, y );
}
@Override
public boolean canTakeStack(EntityPlayer par1EntityPlayer)
{
return false;
}
@Override
public void onPickupFromSlot(EntityPlayer p, ItemStack is)
{
}
}