From dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 13 Mar 2025 11:55:55 -0400 Subject: Use sync fields for hunt panels --- src/game_data.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/game_data.h') 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 { int ap_location_id = -1; bool hunt = false; int panel_door = -1; + int solve_index = -1; }; struct ProgressiveRequirement { @@ -176,6 +177,7 @@ const std::vector& GD_GetDoors(); const Door& GD_GetDoor(int door_id); int GD_GetDoorByName(const std::string& name); const Panel& GD_GetPanel(int panel_id); +int GD_GetPanelBySolveIndex(int solve_index); const PanelDoor& GD_GetPanelDoor(int panel_door_id); const std::vector& GD_GetPaintings(); const PaintingExit& GD_GetPaintingExit(int painting_id); -- cgit 1.4.1