about summary refs log tree commit diff stats
path: root/src/ap_state.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-15 12:11:00 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-05-15 12:11:00 -0400
commit3151ac6274e796f54f2d9269186f1fd2e69f90c3 (patch)
treebd23ebbef27a5ae53a0f548e4366db53e7b7de0b /src/ap_state.h
parenta5a6c1b8b902c960f8204f8d814ce579dfd5fa50 (diff)
downloadlingo-ap-tracker-3151ac6274e796f54f2d9269186f1fd2e69f90c3.tar.gz
lingo-ap-tracker-3151ac6274e796f54f2d9269186f1fd2e69f90c3.tar.bz2
lingo-ap-tracker-3151ac6274e796f54f2d9269186f1fd2e69f90c3.zip
Get checked paintings from server
Diffstat (limited to 'src/ap_state.h')
-rw-r--r--src/ap_state.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ap_state.h b/src/ap_state.h index 6667e0d..5fbb720 100644 --- a/src/ap_state.h +++ b/src/ap_state.h
@@ -3,6 +3,7 @@
3 3
4#include <map> 4#include <map>
5#include <optional> 5#include <optional>
6#include <set>
6#include <string> 7#include <string>
7#include <tuple> 8#include <tuple>
8 9
@@ -54,7 +55,9 @@ bool AP_IsColorShuffle();
54 55
55bool AP_IsPaintingShuffle(); 56bool AP_IsPaintingShuffle();
56 57
57const std::map<std::string, std::string> AP_GetPaintingMapping(); 58const std::map<std::string, std::string>& AP_GetPaintingMapping();
59
60const std::set<std::string>& AP_GetCheckedPaintings();
58 61
59int AP_GetMasteryRequirement(); 62int AP_GetMasteryRequirement();
60 63