globals.h 189 B

12345678910111213141516
  1. #ifndef GLOBALS_H_
  2. #define GLOBALS_H_
  3. typedef struct {
  4. int x;
  5. int y;
  6. } boardInfo;
  7. typedef struct {
  8. int xs;
  9. int xe;
  10. int ys;
  11. int ye;
  12. } playableBoardInfo;
  13. #endif // GLOBALS_H_