Back to project page OneSearch.
The source code is released under:
MIT License
If you think the Android project OneSearch 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 chrisjluc.funsearch.models; //w ww . ja v a 2 s.c o m import java.io.Serializable; @SuppressWarnings("serial") public class GameMode implements Serializable { private GameType type; private GameDifficulty difficulty; private long time; public GameMode(GameType type, GameDifficulty difficulty, long time) { this.type = type; this.difficulty = difficulty; this.time = time; } public GameType getType() { return type; } public GameDifficulty getDifficulty() { return difficulty; } public long getTime() { return time; } }