2013-12-27 23:59:59 +01:00
|
|
|
package appeng.container.slot;
|
|
|
|
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
|
|
|
|
public class SlotNormal extends AppEngSlot
|
|
|
|
{
|
|
|
|
|
2013-12-28 21:54:53 +01:00
|
|
|
public SlotNormal(IInventory inv, int slot, int xPos, int yPos) {
|
|
|
|
super( inv, slot, xPos, yPos );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|