Package net.minecraft.client.gui

Examples of net.minecraft.client.gui.GuiSmallButton


  @Override
  public void initGui() {
    int id = 0;

    this.btnDone = new GuiSmallButton(id++, this.width / 2 + 4, this.height - 30, this.strTranslate.translateKey("schematic.done"));
    this.controlList.add(this.btnDone);

    this.guiSchematicMaterialsSlot = new GuiSchematicMaterialsSlot(this);
  }
View Full Code Here


  @Override
  public void initGui() {
    int id = 0;

    this.btnOpenDir = new GuiSmallButton(id++, this.width / 2 - 154, this.height - 36, this.strTranslate.translateKey("schematic.openFolder"));
    this.controlList.add(this.btnOpenDir);

    this.btnDone = new GuiSmallButton(id++, this.width / 2 + 4, this.height - 36, this.strTranslate.translateKey("schematic.done"));
    this.controlList.add(this.btnDone);

    this.guiSchematicLoadSlot = new GuiSchematicLoadSlot(this);

    reloadSchematics();
View Full Code Here

TOP

Related Classes of net.minecraft.client.gui.GuiSmallButton

Copyright © 2018 www.massapicom. 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.