about summary refs log tree commit diff stats
path: root/Source/Randomizer2.h
diff options
context:
space:
mode:
authorjbzdarkid <jbzdarkid@gmail.com>2019-11-09 14:23:42 -0800
committerjbzdarkid <jbzdarkid@gmail.com>2019-11-09 14:23:42 -0800
commit98db209c9008492baec6bb482b047d386fbdd42b (patch)
tree9f4a932ed1ff2367a98fe02908fee4c884a2d4ed /Source/Randomizer2.h
parent36be1ed32ac9a554f0b11fcc13b5699e717b81f2 (diff)
downloadwitness-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.h12
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
4class Memory;
5class Randomizer2 {
6public:
7 Randomizer2(const std::shared_ptr<Memory>& memory);
8 void Randomize();
9
10private:
11 std::shared_ptr<Memory> _memory;
12};