summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/StoneColor.java
blob: 4a7286ab56b432c35fd7dd97651c2bc8273a8871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package jrummikub.model;

/** Class specifying possible StoneColors */
public enum StoneColor {
	/** */
	BLACK,
	/** */
	ORANGE,
	/** */
	BLUE,
	/** */
	RED,
	/** */
	GREEN,
	/** */
	VIOLET,
	/** */
	AQUA,
	/** */
	GRAY
}