created a src folder

This commit is contained in:
2024-12-15 11:24:50 +02:00
parent 9b515ae973
commit 66238756d6
7 changed files with 1 additions and 1 deletions

16
src/globals.h Normal file
View File

@@ -0,0 +1,16 @@
#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_