treender/inc/values/mrand.hpp
2025-01-03 16:34:05 +01:00

13 lines
265 B
C++

#include <inttypes.h>
struct uint128;
namespace mrand
{
void setSeed(unsigned long long seed);
// int getValue(int min, int max);
float getFloat(uint128 *state);
// float getFloat();
int getValue(int min, int max, uint128 *state);
uint32_t getInt();
}