/** * \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