Back to project page SeniorDesign.
The source code is released under:
GNU General Public License
If you think the Android project SeniorDesign 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 fakesetgame.seniordesign.model; // w w w .j a v a 2 s. co m /** * A enumeration of available board sizes. */ public enum BoardSize { NORMAL(9), LARGE(12); private int size; private BoardSize(int size) {this.size = size;} public int getValue() {return size;} }