about summary refs log tree commit diff stats
path: root/src/game_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_data.h')
-rw-r--r--src/game_data.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game_data.h b/src/game_data.h index 8a38264..c230034 100644 --- a/src/game_data.h +++ b/src/game_data.h
@@ -67,6 +67,8 @@ struct Exit {
67 int destination_room; 67 int destination_room;
68 std::optional<int> door; 68 std::optional<int> door;
69 bool painting = false; 69 bool painting = false;
70 bool sunwarp = false;
71 bool pilgrimage = false;
70}; 72};
71 73
72struct PaintingExit { 74struct PaintingExit {
@@ -111,5 +113,6 @@ const Panel& GD_GetPanel(int panel_id);
111int GD_GetRoomForPainting(const std::string& painting_id); 113int GD_GetRoomForPainting(const std::string& painting_id);
112const std::vector<int>& GD_GetAchievementPanels(); 114const std::vector<int>& GD_GetAchievementPanels();
113int GD_GetItemIdForColor(LingoColor color); 115int GD_GetItemIdForColor(LingoColor color);
116const std::vector<int>& GD_GetPilgrimageDoors(bool include_sunwarps);
114 117
115#endif /* end of include guard: GAME_DATA_H_9C42AC51 */ 118#endif /* end of include guard: GAME_DATA_H_9C42AC51 */