From 98db209c9008492baec6bb482b047d386fbdd42b Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Sat, 9 Nov 2019 14:23:42 -0800 Subject: One down, 522 to go. --- Source/Randomizer2.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Source/Randomizer2.h (limited to 'Source/Randomizer2.h') 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 @@ +#pragma once +#include + +class Memory; +class Randomizer2 { +public: + Randomizer2(const std::shared_ptr& memory); + void Randomize(); + +private: + std::shared_ptr _memory; +}; -- cgit 1.4.1