Files
sanke/src/globals.h
2024-12-15 11:24:50 +02:00

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_