about summary refs log tree commit diff stats
path: root/Source/ChallengeRandomizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/ChallengeRandomizer.h')
-rw-r--r--Source/ChallengeRandomizer.h12
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
5class ChallengeRandomizer {
6public:
7 ChallengeRandomizer(const std::shared_ptr<Memory>& memory, int seed);
8
9private:
10 void AdjustRng(int offset);
11 std::shared_ptr<Memory> _memory;
12};