11 lines
244 B
Dart
11 lines
244 B
Dart
|
/// Enum for the stone colors.
|
||
|
enum Color {
|
||
|
red,
|
||
|
green,
|
||
|
blue,
|
||
|
yellow,
|
||
|
pink,
|
||
|
special, // not a "real" color; indicates that a stone is special (Not retarded, in a nice way, like mama always used to tell me i am her special child)
|
||
|
}
|
||
|
|