diff options
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; + |