From 50430eb61a3056332ae31597729fba4f0cd26e5d Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 19 Aug 2022 16:26:19 +0300 Subject: refactor: separate structure for Move --- src/structs.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/structs.h (limited to 'src/structs.h') diff --git a/src/structs.h b/src/structs.h new file mode 100644 index 0000000..643e7f2 --- /dev/null +++ b/src/structs.h @@ -0,0 +1,6 @@ +typedef struct { + int origin; + int destination; + int value; // Estimated move value +} Move; + -- cgit v1.2.3