diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-21 12:51:05 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-21 12:51:05 -0400 |
commit | 900355a291cd2c2452e909407a57d3e81d7ad85e (patch) | |
tree | d55029bb8af0ce0d41760f10e72c3e5ad2323406 /src/game_data.h | |
parent | dfddd07b8b5cbff7c09103a694aed40bda254a2d (diff) | |
download | lingo-ap-tracker-900355a291cd2c2452e909407a57d3e81d7ad85e.tar.gz lingo-ap-tracker-900355a291cd2c2452e909407a57d3e81d7ad85e.tar.bz2 lingo-ap-tracker-900355a291cd2c2452e909407a57d3e81d7ad85e.zip |
Stopped using apclient get_item_name
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 815ae2e..44084d9 100644 --- a/src/game_data.h +++ b/src/game_data.h | |||
@@ -90,6 +90,7 @@ struct PanelDoor { | |||
90 | int ap_item_id = -1; | 90 | int ap_item_id = -1; |
91 | int group_ap_item_id = -1; | 91 | int group_ap_item_id = -1; |
92 | std::vector<ProgressiveRequirement> progressives; | 92 | std::vector<ProgressiveRequirement> progressives; |
93 | std::string item_name; | ||
93 | }; | 94 | }; |
94 | 95 | ||
95 | struct Exit { | 96 | struct Exit { |
@@ -190,6 +191,7 @@ const std::vector<SubwayItem>& GD_GetSubwayItems(); | |||
190 | const SubwayItem& GD_GetSubwayItem(int id); | 191 | const SubwayItem& GD_GetSubwayItem(int id); |
191 | std::optional<int> GD_GetSubwayItemForPainting(const std::string& painting_id); | 192 | std::optional<int> GD_GetSubwayItemForPainting(const std::string& painting_id); |
192 | int GD_GetSubwayItemForSunwarp(const SubwaySunwarp& sunwarp); | 193 | int GD_GetSubwayItemForSunwarp(const SubwaySunwarp& sunwarp); |
194 | std::string GD_GetItemName(int id); | ||
193 | 195 | ||
194 | LingoColor GetLingoColorForString(const std::string& str); | 196 | LingoColor GetLingoColorForString(const std::string& str); |
195 | 197 | ||