diff options
Diffstat (limited to 'Source/PuzzlerSerializer.h')
-rw-r--r-- | Source/PuzzlerSerializer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/PuzzlerSerializer.h b/Source/PuzzlerSerializer.h index 535d82f..a49dd90 100644 --- a/Source/PuzzlerSerializer.h +++ b/Source/PuzzlerSerializer.h | |||
@@ -1,9 +1,9 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | #include <memory> | 2 | #include <memory> |
3 | #include <unordered_map> | ||
3 | 4 | ||
4 | #include "Puzzle.h" | 5 | #include "Puzzle.h" |
5 | 6 | ||
6 | |||
7 | class Memory; | 7 | class Memory; |
8 | 8 | ||
9 | class PuzzleSerializer { | 9 | class PuzzleSerializer { |
@@ -56,6 +56,7 @@ private: | |||
56 | std::vector<int> _intersectionFlags; | 56 | std::vector<int> _intersectionFlags; |
57 | std::vector<int> _connectionsA; | 57 | std::vector<int> _connectionsA; |
58 | std::vector<int> _connectionsB; | 58 | std::vector<int> _connectionsB; |
59 | std::vector<std::tuple<int, int, int>> _endpointLocations; | ||
59 | 60 | ||
60 | float MIN, MAX, WIDTH_INTERVAL, HEIGHT_INTERVAL, HORIZ_GAP_SIZE, VERTI_GAP_SIZE; | 61 | float MIN, MAX, WIDTH_INTERVAL, HEIGHT_INTERVAL, HORIZ_GAP_SIZE, VERTI_GAP_SIZE; |
61 | }; | 62 | }; |