diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-03-02 21:17:14 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-03-02 21:17:14 -0500 |
commit | e07e0318666e9b05b2a78b7de0979d5706cc28b7 (patch) | |
tree | e01a2587666d01a59eddb38003e008420505b845 /src/game_data.h | |
parent | 2c2d9e9f39ea780b5a04159f9c62fd5540471b86 (diff) | |
download | lingo-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.h | 2 |
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); | |||
129 | const std::vector<int>& GD_GetAchievementPanels(); | 130 | const std::vector<int>& GD_GetAchievementPanels(); |
130 | int GD_GetItemIdForColor(LingoColor color); | 131 | int GD_GetItemIdForColor(LingoColor color); |
131 | const std::vector<int>& GD_GetSunwarpDoors(); | 132 | const std::vector<int>& GD_GetSunwarpDoors(); |
133 | int 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 */ |