OSDN Git Service

tc
[chemicraft/chemicraft.git] / common / pcc / chemicraft / slot / SlotDecompositionTableResult.java
1 package pcc.chemicraft.slot;
2
3 import net.minecraft.inventory.IInventory;
4 import net.minecraft.inventory.Slot;
5 import net.minecraft.item.ItemStack;
6
7 public class SlotDecompositionTableResult extends Slot {
8
9         public SlotDecompositionTableResult(IInventory par1iInventory, int par2,        int par3, int par4) {
10                 super(par1iInventory, par2, par3, par4);
11         }
12
13         @Override
14         public boolean isItemValid(ItemStack par1ItemStack){
15                 return false;
16         }
17
18 }