14 lines
339 B
Java
14 lines
339 B
Java
package appeng.container.implementations;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import appeng.api.implementations.guiobjects.IPortableCell;
|
|
|
|
public class ContainerWirelessTerm extends ContainerMEPortableCell
|
|
{
|
|
|
|
public ContainerWirelessTerm(InventoryPlayer ip, IPortableCell montiorable) {
|
|
super( ip, montiorable );
|
|
}
|
|
|
|
}
|