diff --git a/Pontu/include/model/Coord.h b/Pontu/include/model/Coord.h new file mode 100644 index 0000000..c261716 --- /dev/null +++ b/Pontu/include/model/Coord.h @@ -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 +