diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-16 11:10:26 -0800 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-16 11:10:26 -0800 |
commit | 039b48fe49c31f6033a17aabab353b7b7696e11b (patch) | |
tree | d0297487d926e9e0b5f7edaedc725d760f690c3e /Source/PuzzlerSerializer.h | |
parent | 0baa521ba34d2cd4e0f732f83d23b807605786a2 (diff) | |
download | witness-tutorializer-039b48fe49c31f6033a17aabab353b7b7696e11b.tar.gz witness-tutorializer-039b48fe49c31f6033a17aabab353b7b7696e11b.tar.bz2 witness-tutorializer-039b48fe49c31f6033a17aabab353b7b7696e11b.zip |
it's alive
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 | }; |