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

Examples of com.drakulo.games.ais.core.audio.MusicManager


  }

  @Override
  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

Related Classes of com.drakulo.games.ais.core.audio.MusicManager

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.