blob: d348e4e23620bc848f94899383f219731f7a75c8 (
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 inventory, int slotIndex, int xPos, int yPos) {
super(inventory, slotIndex, xPos, yPos);
}
@Override
public boolean isItemValid(ItemStack itemStack) {
return false;
}
}
|