13 lines
241 B
Java
13 lines
241 B
Java
|
package appeng.container.slot;
|
||
|
|
||
|
import net.minecraft.inventory.IInventory;
|
||
|
|
||
|
public class SlotInaccessableHD extends SlotInaccessable
|
||
|
{
|
||
|
|
||
|
public SlotInaccessableHD(IInventory i, int slotIdx, int x, int y) {
|
||
|
super( i, slotIdx, x, y );
|
||
|
}
|
||
|
|
||
|
}
|