summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/StoneColor.java
blob: 47c5227a8aa7551b623c5c25aba0fac4afa98dd1 (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,
	/** */
	BROWN,
	/** */
	WHITE
}