diff options
Diffstat (limited to 'Source/ChallengeRandomizer.h')
-rw-r--r-- | Source/ChallengeRandomizer.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/ChallengeRandomizer.h b/Source/ChallengeRandomizer.h new file mode 100644 index 0000000..267c5cb --- /dev/null +++ b/Source/ChallengeRandomizer.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #pragma once | ||
2 | #include "Memory.h" | ||
3 | #include <memory> | ||
4 | |||
5 | class ChallengeRandomizer { | ||
6 | public: | ||
7 | ChallengeRandomizer(const std::shared_ptr<Memory>& memory, int seed); | ||
8 | |||
9 | private: | ||
10 | void AdjustRng(int offset); | ||
11 | std::shared_ptr<Memory> _memory; | ||
12 | }; | ||