about summary refs log tree commit diff stats
path: root/src/game_data.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-03-21 12:51:05 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-03-21 12:51:05 -0400
commit900355a291cd2c2452e909407a57d3e81d7ad85e (patch)
treed55029bb8af0ce0d41760f10e72c3e5ad2323406 /src/game_data.h
parentdfddd07b8b5cbff7c09103a694aed40bda254a2d (diff)
downloadlingo-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.h2
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
95struct Exit { 96struct Exit {
@@ -190,6 +191,7 @@ const std::vector<SubwayItem>& GD_GetSubwayItems();
190const SubwayItem& GD_GetSubwayItem(int id); 191const SubwayItem& GD_GetSubwayItem(int id);
191std::optional<int> GD_GetSubwayItemForPainting(const std::string& painting_id); 192std::optional<int> GD_GetSubwayItemForPainting(const std::string& painting_id);
192int GD_GetSubwayItemForSunwarp(const SubwaySunwarp& sunwarp); 193int GD_GetSubwayItemForSunwarp(const SubwaySunwarp& sunwarp);
194std::string GD_GetItemName(int id);
193 195
194LingoColor GetLingoColorForString(const std::string& str); 196LingoColor GetLingoColorForString(const std::string& str);
195 197