
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@358 72836036-5685-4462-b002-a69064685172
13 lines
263 B
Java
13 lines
263 B
Java
package jrummikub.control.turn;
|
|
|
|
/**
|
|
* Different kinds of turns
|
|
*/
|
|
public enum TurnMode {
|
|
/** Turn zero with possibility to redeal */
|
|
MAY_REDEAL,
|
|
/** Turn zero without possibility to redeal */
|
|
INSPECT_ONLY,
|
|
/** A normal turn */
|
|
NORMAL_TURN
|
|
}
|