about summary refs log tree commit diff stats
path: root/Source/Randomizer.h
blob: a26acabf99c6c8d8524769861578e8fc7ea022bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

class Randomizer {
public:
    Randomizer(const std::shared_ptr<Memory>& memory);
    void Randomize();

private:
    int _lastRandomizedFrame = 1 << 30;

    void Tutorialise(int panel1, int copyFrom);

    std::shared_ptr<Memory> _memory;

    friend class SwapTests_Shipwreck_Test;
};