diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-09 11:14:10 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-09 11:14:10 -0400 |
commit | 53a2ec277f20a7c260e80af527659e769f6d2ac6 (patch) | |
tree | 93527b1a1458352aa2d35916a3621cd144d48e0c /src/game_data.h | |
parent | 884549457f8f5d9a13fd575ddf70aa317cd752ed (diff) | |
download | lingo-ap-tracker-53a2ec277f20a7c260e80af527659e769f6d2ac6.tar.gz lingo-ap-tracker-53a2ec277f20a7c260e80af527659e769f6d2ac6.tar.bz2 lingo-ap-tracker-53a2ec277f20a7c260e80af527659e769f6d2ac6.zip |
Support reduce_checks
Diffstat (limited to 'src/game_data.h')
-rw-r--r-- | src/game_data.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game_data.h b/src/game_data.h index 75eede3..7348809 100644 --- a/src/game_data.h +++ b/src/game_data.h | |||
@@ -71,6 +71,7 @@ struct Location { | |||
71 | std::string ap_location_name; | 71 | std::string ap_location_name; |
72 | int room; | 72 | int room; |
73 | std::vector<int> panels; | 73 | std::vector<int> panels; |
74 | bool exclude_reduce = false; | ||
74 | }; | 75 | }; |
75 | 76 | ||
76 | struct MapArea { | 77 | struct MapArea { |
@@ -79,6 +80,7 @@ struct MapArea { | |||
79 | std::vector<Location> locations; | 80 | std::vector<Location> locations; |
80 | int map_x; | 81 | int map_x; |
81 | int map_y; | 82 | int map_y; |
83 | bool exclude_reduce = false; | ||
82 | }; | 84 | }; |
83 | 85 | ||
84 | const std::vector<MapArea>& GD_GetMapAreas(); | 86 | const std::vector<MapArea>& GD_GetMapAreas(); |