1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-18 07:07:45 +00:00
astra/launcher/include/crtrand.h

15 lines
149 B
C
Raw Normal View History

#pragma once
#include <cstdint>
class CrtRand
{
public:
explicit CrtRand(uint32_t seed);
uint32_t next();
private:
uint32_t seed;
};