12 lines
333 B
Java
12 lines
333 B
Java
package mekanism.client.gui;
|
|
|
|
import mekanism.common.tile.TileEntityChanceMachine;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
public class GuiPrecisionSawmill extends GuiChanceMachine
|
|
{
|
|
public GuiPrecisionSawmill(InventoryPlayer inventory, TileEntityChanceMachine tentity)
|
|
{
|
|
super(inventory, tentity);
|
|
}
|
|
}
|