mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-17 22:57:46 +00:00
I also added unit tests to verify this works exactly 1-to-1 to XIVQuickLauncher's implementation. The next step is hooking up all of our things together!
14 lines
149 B
C++
14 lines
149 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class CrtRand
|
|
{
|
|
public:
|
|
explicit CrtRand(uint32_t seed);
|
|
|
|
uint32_t next();
|
|
|
|
private:
|
|
uint32_t seed;
|
|
};
|