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 3179365..1f6d247 100644 --- a/src/game_data.h +++ b/src/game_data.h
@@ -148,9 +148,13 @@ struct SubwayItem {
148 int y; 148 int y;
149 std::optional<int> door; 149 std::optional<int> door;
150 std::vector<std::string> paintings; 150 std::vector<std::string> paintings;
151 std::vector<std::string> tags; 151 std::vector<std::string> tags; // 2-way teleports
152 std::vector<std::string> entrances; // teleport entrances
153 std::vector<std::string> exits; // teleport exits
152 std::optional<SubwaySunwarp> sunwarp; 154 std::optional<SubwaySunwarp> sunwarp;
153 std::optional<std::string> special; 155 std::optional<std::string> special;
156
157 bool HasWarps() const;
154}; 158};
155 159
156const std::vector<MapArea>& GD_GetMapAreas(); 160const std::vector<MapArea>& GD_GetMapAreas();