about summary refs log tree commit diff stats
path: root/src/ap_state.h
diff options
context:
space:
mode:
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