about summary refs log tree commit diff stats
path: root/src/game_data.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-05-09 11:14:10 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-05-09 11:14:10 -0400
commit53a2ec277f20a7c260e80af527659e769f6d2ac6 (patch)
tree93527b1a1458352aa2d35916a3621cd144d48e0c /src/game_data.h
parent884549457f8f5d9a13fd575ddf70aa317cd752ed (diff)
downloadlingo-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.h2
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
76struct MapArea { 77struct 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
84const std::vector<MapArea>& GD_GetMapAreas(); 86const std::vector<MapArea>& GD_GetMapAreas();