OSDN Git Service

ae3d08ed7d1cb510aefad6f7c55a8ebb45c3b377
[chemicraft/ChemiCraftNext.git] / src / asia / tcrs / ccnp / chemicraftnext / core / slot / SlotResult.java
1 package asia.tcrs.ccnp.chemicraftnext.core.slot;
2
3 import net.minecraft.inventory.IInventory;
4 import net.minecraft.inventory.Slot;
5 import net.minecraft.item.ItemStack;
6
7 public class SlotResult extends Slot {
8
9         public SlotResult(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 }