Package org.gbcpainter.game

Examples of org.gbcpainter.game.LevelManagerImpl


  private void createLevelJob() throws IllegalArgumentException {
    if(this.manager != null) {
      this.manager.terminate();
    }

    this.manager = new LevelManagerImpl( getLevel() );
    this.manager.pauseOnDeath( true );
    this.manager.setInterval( GameSettings.getInstance()
                                     .getValue( GameSettings.INTEGER_SETTINGS_TYPE.MOVE_MILLIS_TIMEOUT ) );
    this.manager.addLevelStopListener( GameHolder.this );
  }
View Full Code Here

TOP

Related Classes of org.gbcpainter.game.LevelManagerImpl

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.