Package com.drakulo.games.ais.core.audio

Examples of com.drakulo.games.ais.core.audio.MusicManager.playMusic()


  public void update(GameContainer container, StateBasedGame game, int arg2)
      throws SlickException {
    MusicManager musicManager = MusicManager.getInstance();
    if (!started || musicManager.getPlayingMusic() == null) {
      started = true;
      musicManager.playMusic(bgMusic);
    }

    Input input = container.getInput();
    for (TextButton tb : buttons) {
      tb.update(input);
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.