OSDN Git Service

パッケージ変更
[chemicraft/ChemiCraftNext.git] / src / asia / tcrs / ccnp / chemicraftnext / core / slot / SlotResult.java
diff --git a/src/asia/tcrs/ccnp/chemicraftnext/core/slot/SlotResult.java b/src/asia/tcrs/ccnp/chemicraftnext/core/slot/SlotResult.java
new file mode 100644 (file)
index 0000000..ae3d08e
--- /dev/null
@@ -0,0 +1,18 @@
+package asia.tcrs.ccnp.chemicraftnext.core.slot;
+
+import net.minecraft.inventory.IInventory;
+import net.minecraft.inventory.Slot;
+import net.minecraft.item.ItemStack;
+
+public class SlotResult extends Slot {
+
+       public SlotResult(IInventory par1iInventory, int par2, int par3, int par4) {
+               super(par1iInventory, par2, par3, par4);
+       }
+
+       @Override
+       public boolean isItemValid(ItemStack par1ItemStack){
+               return false;
+       }
+
+}