mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-07-07 04:22:53 +00:00

* Updated (C) * Fixed Whitespace bugs, bugs, and more bugs * Fixed Whitespaces 1/2 * Fixed Whitespaces 2/2 * Fixed Whitespaces 3/2
25 lines
819 B
Java
25 lines
819 B
Java
/*
|
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
* Copyright Daniel Ratcliffe, 2011-2017. Do not distribute without permission.
|
|
* Send enquiries to dratcliffe@gmail.com
|
|
*/
|
|
|
|
package dan200.computercraft.client.gui;
|
|
|
|
import dan200.computercraft.ComputerCraft;
|
|
import dan200.computercraft.shared.media.inventory.ContainerHeldItem;
|
|
|
|
public class GuiPocketComputer extends GuiComputer
|
|
{
|
|
public GuiPocketComputer( ContainerHeldItem container )
|
|
{
|
|
super(
|
|
container,
|
|
ComputerCraft.Items.pocketComputer.getFamily( container.getStack() ),
|
|
ComputerCraft.Items.pocketComputer.createClientComputer( container.getStack() ),
|
|
ComputerCraft.terminalWidth_pocketComputer,
|
|
ComputerCraft.terminalHeight_pocketComputer
|
|
);
|
|
}
|
|
}
|