qwixx.h 532 B

1234567891011121314
  1. #ifndef QWIXX
  2. #define QWIXX
  3. enum{NOT_STARTED, STARTED, FINISHED, PLAYING};
  4. enum{left, right};
  5. enum{penalty, everyone, active, selectionSize};
  6. // to add a color in the future, place it before white1 below
  7. enum {red, yellow, green, blue, white1, white2, colors};
  8. // checkboxes represents the count of the sample space of the sum of rolling 2 dice
  9. #define CHECKBOXES 11
  10. #define CHECKBOX_COUNT (CHECKBOXES*white1)
  11. #define PENALTY_VALUE 5
  12. #define MAX_PENALTY 4
  13. #define MAX_LOCKOUT 2
  14. #endif