blob: 3c91380d1688d19f9311d4204c59e67ccb4cd6d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package gregtech.api.gui;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class GT_Slot_Output extends Slot {
public GT_Slot_Output(IInventory par1iInventory, int par2, int par3, int par4) {
super(par1iInventory, par2, par3, par4);
}
@Override
public boolean isItemValid(ItemStack par1ItemStack) {
return false;
}
}
|