1234567891011121314 |
- #ifndef QWIXX
- #define QWIXX
- enum{NOT_STARTED, STARTED, FINISHED, PLAYING};
- enum{row, column};
- enum{penalty, everyone, active, selectionSize};
- // to add a color in the future, place it before white1 below
- enum {red, yellow, green, blue, white1, white2, colors};
- // checkboxes represents the count of the sample space of the sum of rolling 2 dice
- #define CHECKBOXES 11
- #define CHECKBOX_COUNT (CHECKBOXES*white1)
- #define PENALTY_VALUE 5
- #define MAX_PENALTY 4
- #define MAX_LOCKOUT 2
- #endif
|