11 lines
216 B
C
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);
|
|||
|
};
|