CppUtils/Utils/CRandom.h
2025-06-05 10:06:43 +08:00

11 lines
216 B
C++

#pragma once
#include "defines.h"
#include <vector>
class Random
{
public:
static int Next();
static int Next(int min, int max);
static double NextDouble();
static std::vector<uint8_t> NextBytes(int count);
};