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);
}