Examples of TankWidget


Examples of forestry.core.gui.widgets.TankWidget

public class GuiSqueezer extends GuiForestryTitled<MachineSqueezer> {

  public GuiSqueezer(InventoryPlayer inventory, MachineSqueezer tile) {
    super(Defaults.TEXTURE_PATH_GUI + "/squeezer.png", new ContainerSqueezer(inventory, tile), tile);
    widgetManager.add(new TankWidget(this.widgetManager, 85, 15, 0));
  }
View Full Code Here

Examples of forestry.core.gui.widgets.TankWidget

public class GuiBottler extends GuiForestryTitled<MachineBottler> {

  public GuiBottler(InventoryPlayer inventory, MachineBottler processor) {
    super(Defaults.TEXTURE_PATH_GUI + "/bottler.png", new ContainerBottler(inventory, processor), processor);
    widgetManager.add(new TankWidget(this.widgetManager, 53, 17, 0));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.