17 lines
189 B
C
17 lines
189 B
C
#ifndef GLOBALS_H_
|
|
#define GLOBALS_H_
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
} boardInfo;
|
|
|
|
typedef struct {
|
|
int xs;
|
|
int xe;
|
|
int ys;
|
|
int ye;
|
|
} playableBoardInfo;
|
|
|
|
#endif // GLOBALS_H_
|