Applied-Energistics-2-tiler.../client/gui/implementations/GuiSecurity.java
2014-01-31 00:33:31 -06:00

20 lines
415 B
Java

package appeng.client.gui.implementations;
import net.minecraft.entity.player.InventoryPlayer;
import appeng.api.storage.IStorageMonitorable;
public class GuiSecurity extends GuiMEMonitorable
{
public GuiSecurity(InventoryPlayer inventoryPlayer, IStorageMonitorable te) {
super( inventoryPlayer, te );
perRow = 5;
xoffset = 81;
}
protected String getBackground()
{
return "guis/security.png";
}
}