diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-14 11:41:50 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-14 11:41:50 -0400 |
commit | 7f4b6b4f0cb276a7e0868c7e97d862b1feb468d3 (patch) | |
tree | 101ca3148d5470db821d1572c8f795dd5ad61759 /src/game_data.h | |
parent | 34133b1e330a7d3c2a3e6a6bcd36deb5f95e8f13 (diff) | |
download | lingo-ap-tracker-7f4b6b4f0cb276a7e0868c7e97d862b1feb468d3.tar.gz lingo-ap-tracker-7f4b6b4f0cb276a7e0868c7e97d862b1feb468d3.tar.bz2 lingo-ap-tracker-7f4b6b4f0cb276a7e0868c7e97d862b1feb468d3.zip |
Hovered connections on subway map!
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 */ |