Package org.spoutcraft.client.special

Examples of org.spoutcraft.client.special.Holiday


    }
   
    if (vip != null && vip.getCape() != null) {
      playerCloakUrl = vip.getCape();
    } else {
      Holiday holiday = Resources.getHoliday();
      if (holiday != null && holiday.getCape() != null) {
        playerCloakUrl = holiday.getCape();
      }
    }   
    return playerCloakUrl;
  }
View Full Code Here


  public MainMenu() {
    splashText = new GenericLabel(getSplashText());
    updateBackgrounds();

    Holiday holiday = Resources.getHoliday();
    if (holiday != null) {
      splashText.setText(holiday.getSplash());
    }

    // Randomize background order
    Random rand = new Random();
    // Randomize by swapping the first background with a random background in the list
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.special.Holiday

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.