From dc4a14397ae226d91041389c2a47993f9c22f83d Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 3 May 2023 14:09:40 -0400 Subject: Added painting shuffle support --- ap_state.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ap_state.h') diff --git a/ap_state.h b/ap_state.h index 5ed7574..8f27a23 100644 --- a/ap_state.h +++ b/ap_state.h @@ -32,6 +32,12 @@ class APState { bool IsColorShuffle() const { return color_shuffle_; } + bool IsPaintingShuffle() const { return painting_shuffle_; } + + const std::map GetPaintingMapping() const { + return painting_mapping_; + } + private: void RefreshTracker(); @@ -51,6 +57,9 @@ class APState { DoorShuffleMode door_shuffle_mode_ = kNO_DOORS; bool color_shuffle_ = false; + bool painting_shuffle_ = false; + + std::map painting_mapping_; }; APState& GetAPState(); -- cgit 1.4.1