17 lines
417 B
Java
17 lines
417 B
Java
|
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;
|
||
|
}
|
||
|
}
|