/* (non-Javadoc) * @see net.fe.overworldStage.OverworldContext#onCancel() */ @Override public void onCancel() { super.onCancel(); // Reset the position of the cursor on cancels cursor.setXCoord(unit.getXCoord()); cursor.setYCoord(unit.getYCoord()); }
public void onCancel() { AudioPlayer.playAudio("cancel"); prev.startContext(); }
/* (non-Javadoc) * @see net.fe.overworldStage.OverworldContext#cleanUp() */ public void cleanUp() { super.cleanUp(); stage.removeEntity(zone); }
/* (non-Javadoc) * @see net.fe.overworldStage.OverworldContext#startContext() */ public void startContext() { super.startContext(); findTargets(unit); stage.addEntity(zone); updateCursor(); }