diff options
Diffstat (limited to 'src/game_data.h')
-rw-r--r-- | src/game_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game_data.h b/src/game_data.h index 37d1eb3..3afaec3 100644 --- a/src/game_data.h +++ b/src/game_data.h | |||
@@ -128,6 +128,8 @@ enum class SubwaySunwarpType { | |||
128 | struct SubwaySunwarp { | 128 | struct SubwaySunwarp { |
129 | int dots; | 129 | int dots; |
130 | SubwaySunwarpType type; | 130 | SubwaySunwarpType type; |
131 | |||
132 | bool operator<(const SubwaySunwarp& rhs) const; | ||
131 | }; | 133 | }; |
132 | 134 | ||
133 | struct SubwayItem { | 135 | struct SubwayItem { |
@@ -156,5 +158,7 @@ const std::vector<int>& GD_GetSunwarpDoors(); | |||
156 | int GD_GetRoomForSunwarp(int index); | 158 | int GD_GetRoomForSunwarp(int index); |
157 | const std::vector<SubwayItem>& GD_GetSubwayItems(); | 159 | const std::vector<SubwayItem>& GD_GetSubwayItems(); |
158 | const SubwayItem& GD_GetSubwayItem(int id); | 160 | const SubwayItem& GD_GetSubwayItem(int id); |
161 | int GD_GetSubwayItemForPainting(const std::string& painting_id); | ||
162 | int GD_GetSubwayItemForSunwarp(const SubwaySunwarp& sunwarp); | ||
159 | 163 | ||
160 | #endif /* end of include guard: GAME_DATA_H_9C42AC51 */ | 164 | #endif /* end of include guard: GAME_DATA_H_9C42AC51 */ |