about summary refs log tree commit diff stats
path: root/src/game_data.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-03-02 21:17:14 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-03-02 21:17:14 -0500
commite07e0318666e9b05b2a78b7de0979d5706cc28b7 (patch)
treee01a2587666d01a59eddb38003e008420505b845 /src/game_data.h
parent2c2d9e9f39ea780b5a04159f9c62fd5540471b86 (diff)
downloadlingo-ap-tracker-e07e0318666e9b05b2a78b7de0979d5706cc28b7.tar.gz
lingo-ap-tracker-e07e0318666e9b05b2a78b7de0979d5706cc28b7.tar.bz2
lingo-ap-tracker-e07e0318666e9b05b2a78b7de0979d5706cc28b7.zip
Added sunwarp shuffle
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 16d006c..cd09627 100644 --- a/src/game_data.h +++ b/src/game_data.h
@@ -94,6 +94,7 @@ struct Room {
94 std::string name; 94 std::string name;
95 std::vector<Exit> exits; 95 std::vector<Exit> exits;
96 std::vector<PaintingExit> paintings; 96 std::vector<PaintingExit> paintings;
97 std::vector<int> sunwarps;
97 std::vector<int> panels; 98 std::vector<int> panels;
98}; 99};
99 100
@@ -129,5 +130,6 @@ int GD_GetRoomForPainting(const std::string& painting_id);
129const std::vector<int>& GD_GetAchievementPanels(); 130const std::vector<int>& GD_GetAchievementPanels();
130int GD_GetItemIdForColor(LingoColor color); 131int GD_GetItemIdForColor(LingoColor color);
131const std::vector<int>& GD_GetSunwarpDoors(); 132const std::vector<int>& GD_GetSunwarpDoors();
133int GD_GetRoomForSunwarp(int index);
132 134
133#endif /* end of include guard: GAME_DATA_H_9C42AC51 */ 135#endif /* end of include guard: GAME_DATA_H_9C42AC51 */