1
1

qwixx.h 369 B

1234567891011
  1. #ifndef QWIXX
  2. #define QWIXX
  3. enum{NOT_STARTED, STARTED, FINISHED, PLAYING};
  4. // to add a color in the future, place it before white1 below
  5. enum {red, yellow, green, blue, white1, white2, colors};
  6. #define CHECKBOXES 12
  7. #define CHECKBOX_COUNT (CHECKBOXES*white1)
  8. #define PENALTY_VALUE 5
  9. #define MAX_PENALTY 4
  10. #define MAX_LOCKOUT 2
  11. #endif