Package com.svanloon.game.wizard.human.dialog

Examples of com.svanloon.game.wizard.human.dialog.UserPreferencesScreen


  private GameType gameType = GameType.HOSTED;
  private int displayScreen = -1;
 
  public void run() {
    if(displayScreen == 1) {
      UserPreferencesScreen ups2 = new UserPreferencesScreen();
      ups2.prompt();
      this.ups = ups2;
    } else if(displayScreen == 2) {
      GameOptionsScreen gos2 = new GameOptionsScreen();
      gos2.prompt();
      this.gos = gos2;
View Full Code Here


   * Constructs a new <code>SplashScreen</code> object.
   *
   */
  public SplashScreen() {
    super();
    ups = new UserPreferencesScreen();
    gos = new GameOptionsScreen();
    LanguageFactory.setLocale(ups.getUserPreferences().getLocale());

    Color bg = new Color(52,53,110);
    JLabel ul = new JLabel(new ImageIcon(this.getClass().getClassLoader().getResource("images/splash.gif")));
View Full Code Here

TOP

Related Classes of com.svanloon.game.wizard.human.dialog.UserPreferencesScreen

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.