diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-24 14:08:30 -0800 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-24 14:08:30 -0800 |
commit | 81fa5933d23db320934d168329b818b1868eeb6c (patch) | |
tree | 8527b3e9bdb4c1d523937fe47f249900be657983 /Source/PuzzleSerializer.h | |
parent | 88ad92c9382a68532503a351b053de024d116774 (diff) | |
download | witness-tutorializer-81fa5933d23db320934d168329b818b1868eeb6c.tar.gz witness-tutorializer-81fa5933d23db320934d168329b818b1868eeb6c.tar.bz2 witness-tutorializer-81fa5933d23db320934d168329b818b1868eeb6c.zip |
Grid cells are now square. Yay.
Diffstat (limited to 'Source/PuzzleSerializer.h')
-rw-r--r-- | Source/PuzzleSerializer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/PuzzleSerializer.h b/Source/PuzzleSerializer.h index 4d254d8..4ccd383 100644 --- a/Source/PuzzleSerializer.h +++ b/Source/PuzzleSerializer.h | |||
@@ -65,5 +65,6 @@ private: | |||
65 | // Locations of non-grid points, i.e. dots, gaps, and endpoints | 65 | // Locations of non-grid points, i.e. dots, gaps, and endpoints |
66 | std::unordered_map<int, int> _extraLocations; | 66 | std::unordered_map<int, int> _extraLocations; |
67 | 67 | ||
68 | float MIN, MAX, WIDTH_INTERVAL, HEIGHT_INTERVAL, INTERVAL, GAP_SIZE; | 68 | float MIN, MAX, INTERVAL; |
69 | int X_OFF, Y_OFF; | ||
69 | }; | 70 | }; |