From eeabdf3db256ea67023d6a8fd0674d88c172fef3 Mon Sep 17 00:00:00 2001 From: thmaillarb Date: Mon, 6 Dec 2021 11:56:04 +0100 Subject: [PATCH] Added Coord struct --- Pontu/include/model/Coord.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Pontu/include/model/Coord.h 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 +