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.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game_data.h b/src/game_data.h index 9b6f3b2..b00bac9 100644 --- a/src/game_data.h +++ b/src/game_data.h
@@ -155,9 +155,13 @@ struct SubwayItem {
155 int y; 155 int y;
156 std::optional<int> door; 156 std::optional<int> door;
157 std::vector<std::string> paintings; 157 std::vector<std::string> paintings;
158 std::vector<std::string> tags; 158 std::vector<std::string> tags; // 2-way teleports
159 std::vector<std::string> entrances; // teleport entrances
160 std::vector<std::string> exits; // teleport exits
159 std::optional<SubwaySunwarp> sunwarp; 161 std::optional<SubwaySunwarp> sunwarp;
160 std::optional<std::string> special; 162 std::optional<std::string> special;
163
164 bool HasWarps() const;
161}; 165};
162 166
163const std::vector<MapArea>& GD_GetMapAreas(); 167const std::vector<MapArea>& GD_GetMapAreas();