summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/StoneColor.java
blob: 6b1807b08971e72de194a6f3b3c5391489be5ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package jrummikub.model;

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