Back to project page DroidSweeper.
The source code is released under:
MIT License
If you think the Android project DroidSweeper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.nisble.droidsweeper.game.replay; // w w w . j a v a 2 s .c o m import de.nisble.droidsweeper.config.GameConfig; /** Interface for observing a {@link Player replay player}. * @author Moritz Nisbl moritz.nisble@gmx.de */ public interface PlayerObserver { /** Called when its time to build a new game grid for showing a * {@link Replay}. * @param config The {@link GameConfig configuration} for the new game grid. */ void onBuildGrid(GameConfig config); /** Called when its time for the view to update the time label. * Currently called each second. * @param milliseconds The elapsed play time in milliseconds. */ void onTimeUpdate(long milliseconds); /** Called when its time for the view to update the remaining bombs shown to * the user. This value is negative, when the user has marked more fields as * bombs than present in the game. * @param bombCount The count of remaining bombs in the game. */ void onRemainingBombsChanged(int bombCount); /** Called when the {@link Replay} is finished. */ void onReplayEnded(); }