Package cz.cuni.mff.abacs.burglar.visual.play_state

Examples of cz.cuni.mff.abacs.burglar.visual.play_state.GraphicPlayState


  public VisualBurglar() throws SlickException {
    // set the title:
    super(STR_TITLE);
    // set the states:
    this.addState(new MenuState(STATE_MENU));
    this.addState(new GraphicPlayState(STATE_PLAY));
    this.addState(new LevelSelectionState(STATE_LEVEL_SELECT));
    // start:
    this.enterState(STATE_MENU);
  }
View Full Code Here

TOP

Related Classes of cz.cuni.mff.abacs.burglar.visual.play_state.GraphicPlayState

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.