diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-13 11:55:55 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-13 11:55:55 -0400 |
commit | dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25 (patch) | |
tree | 65f201e323d5d6a36291ec5a108c4b14649116da /src/game_data.h | |
parent | f4945731a958371d206ccfa4a34486b263be5b21 (diff) | |
download | lingo-ap-tracker-dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25.tar.gz lingo-ap-tracker-dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25.tar.bz2 lingo-ap-tracker-dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25.zip |
Use sync fields for hunt panels
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 0facd12..815ae2e 100644 --- a/src/game_data.h +++ b/src/game_data.h | |||
@@ -57,6 +57,7 @@ struct Panel { | |||
57 | int ap_location_id = -1; | 57 | int ap_location_id = -1; |
58 | bool hunt = false; | 58 | bool hunt = false; |
59 | int panel_door = -1; | 59 | int panel_door = -1; |
60 | int solve_index = -1; | ||
60 | }; | 61 | }; |
61 | 62 | ||
62 | struct ProgressiveRequirement { | 63 | struct ProgressiveRequirement { |
@@ -176,6 +177,7 @@ const std::vector<Door>& GD_GetDoors(); | |||
176 | const Door& GD_GetDoor(int door_id); | 177 | const Door& GD_GetDoor(int door_id); |
177 | int GD_GetDoorByName(const std::string& name); | 178 | int GD_GetDoorByName(const std::string& name); |
178 | const Panel& GD_GetPanel(int panel_id); | 179 | const Panel& GD_GetPanel(int panel_id); |
180 | int GD_GetPanelBySolveIndex(int solve_index); | ||
179 | const PanelDoor& GD_GetPanelDoor(int panel_door_id); | 181 | const PanelDoor& GD_GetPanelDoor(int panel_door_id); |
180 | const std::vector<PaintingExit>& GD_GetPaintings(); | 182 | const std::vector<PaintingExit>& GD_GetPaintings(); |
181 | const PaintingExit& GD_GetPaintingExit(int painting_id); | 183 | const PaintingExit& GD_GetPaintingExit(int painting_id); |