Added Coord struct

merge-requests/1/merge
thmaillarb 4 years ago
parent e27357cadd
commit eeabdf3db2

@ -0,0 +1,12 @@
/**
* \file Coord.h
* \brief Board coordinates
* \author Théotime Maillarbaux
* \date 06/12/2021
*/
typedef struct {
int x; ///< Coordinate on the X-axis
int y; ///< Coordinate on the Y-axis
} Coord
Loading…
Cancel
Save