Examples of ArmourBoxEntry


Examples of com.flansmod.common.teams.ArmourBoxType.ArmourBoxEntry

   * @param n : y position to render in
   * @param q : armour page
   * */
  private void drawRecipe(FontRenderer fontrenderer, int m, int n, int q)
  {
    ArmourBoxEntry page = type.pages.get(q);
    if (page != null)
    {
      GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
      //fontRenderer.drawString(type.guns[q].name, m + 9, n + 22, 0xffffffff);
     
View Full Code Here

Examples of com.flansmod.common.teams.ArmourBoxType.ArmourBoxEntry

  {
    if(FMLCommonHandler.instance().getEffectiveSide().isClient())
    {
      FlansMod.proxy.buyArmour(shortName, piece, type);
    }
    ArmourBoxEntry entryPicked = null;
    for(ArmourBoxEntry page : type.pages)
    {
      if(page.shortName.equals(shortName))
        entryPicked = page;
    }
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.