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

class ChallengeRandomizer {
public:
    ChallengeRandomizer(const std::shared_ptr<Memory>& memory, int seed);

private:
    void AdjustRng(int offset);
    std::shared_ptr<Memory> _memory;

    int RNG_ADDR;
    int RNG2_ADDR;
};