9 lines
219 B
Java
9 lines
219 B
Java
package games.dominos;
|
|
|
|
import iialib.games.model.IRole;
|
|
|
|
public enum DominosRole implements IRole{
|
|
HORIZONTAL, // For the player playing its tiles hally
|
|
VERTICAL // For the player playing its tiles vertically
|
|
}
|