Package com.palepail.TestGame.Screens

Examples of com.palepail.TestGame.Screens.MainMenu


  FPSLogger log;
  @Override
  public void create() {   
    log = new FPSLogger();
    //setScreen(new SplashScreen(this));
    setScreen(new MainMenu(this));
  }
View Full Code Here


      public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
        System.out.println("up");
        Audio.stopMusic();
        Audio.ok();
        game.setScreen(new MainMenu(game));
      }
    });

    return no;
  }
View Full Code Here

TOP

Related Classes of com.palepail.TestGame.Screens.MainMenu

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.