diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-09 14:23:42 -0800 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-09 14:23:42 -0800 |
commit | 98db209c9008492baec6bb482b047d386fbdd42b (patch) | |
tree | 9f4a932ed1ff2367a98fe02908fee4c884a2d4ed /Source/Randomizer2.h | |
parent | 36be1ed32ac9a554f0b11fcc13b5699e717b81f2 (diff) | |
download | witness-tutorializer-98db209c9008492baec6bb482b047d386fbdd42b.tar.gz witness-tutorializer-98db209c9008492baec6bb482b047d386fbdd42b.tar.bz2 witness-tutorializer-98db209c9008492baec6bb482b047d386fbdd42b.zip |
One down, 522 to go.
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 | }; | ||