Examples of GuiButtonFramedEnchantment


Examples of thaumic.tinkerer.client.gui.button.GuiButtonFramedEnchantment

    asignEnchantButtons();

    int i = 0;
    for (Integer enchant : enchanter.enchantments) {
      GuiButtonEnchantment button = new GuiButtonFramedEnchantment(this, 17 + i * 3, x + xSize + 4, y + i * 26);
      button.enchant = Enchantment.enchantmentsList[enchant];
      buttonList.add(button);
      buttonList.add(new GuiButtonEnchanterLevel(17 + i * 3 + 1, x + xSize + 24, y + i * 26 - 4, false));
      buttonList.add(new GuiButtonEnchanterLevel(17 + i * 3 + 2, x + xSize + 31, y + i * 26 - 4, true));
      ++i;
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.