mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-06 10:47:44 +00:00
18 lines
261 B
C
18 lines
261 B
C
|
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
class CrtRand
|
||
|
{
|
||
|
public:
|
||
|
explicit CrtRand(uint32_t seed);
|
||
|
|
||
|
uint32_t next();
|
||
|
|
||
|
private:
|
||
|
uint32_t seed;
|
||
|
};
|