Package mffs.gui.button

Examples of mffs.gui.button.GuiButtonPress


    int y = 0;

    for (int i = 0; i < Permission.getPermissions().length; i++)
    {
      x++;
      this.buttonList.add(new GuiButtonPress(i + 1, this.width / 2 - 50 + 20 * x, this.height / 2 - 75 + 20 * y, new Vector2(18, 18 * i), this, Permission.getPermissions()[i].name));

      if (i % 3 == 0 && i != 0)
      {
        x = 0;
        y++;
View Full Code Here


          for (int i = 0; i < this.buttonList.size(); i++)
          {
            if (this.buttonList.get(i) instanceof GuiButtonPress)
            {
              GuiButtonPress button = (GuiButtonPress) this.buttonList.get(i);
              button.drawButton = true;

              int permissionID = i - 1;

              if (Permission.getPermission(permissionID) != null)
View Full Code Here

TOP

Related Classes of mffs.gui.button.GuiButtonPress

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.