Back to project page Gamework.
The source code is released under:
Apache License
If you think the Android project Gamework 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 cz.robyer.gamework.game; // w ww. j a va2s .c om /** * Represents status of game service. * @author Robert P?sel */ public enum GameStatus { GAME_NONE, /** No game is loaded. */ GAME_LOADING, /** Game is loading needed resources. */ GAME_WAITING, /** Game was loaded and now is waiting for starting event. Only location (no timer) updates are running here (but they are NOT distributed to Scenario objects). */ GAME_RUNNING, /** Game was started and now is running. */ GAME_PAUSED, /** Game was paused and now is waiting for starting event. No location (or timer) updates are running here. */ GAME_WON, /** Game was completed and user won it. */ GAME_LOST, /** Game was completed and user lost it. */ };