blob: 1aeae115c23eff7deaf4c60aec4681857b5de3ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <memory>
class Memory;
class Randomizer2 {
public:
Randomizer2(const std::shared_ptr<Memory>& memory);
void Randomize();
private:
std::shared_ptr<Memory> _memory;
};
|