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