about summary refs log tree commit diff stats
path: root/Source/Random.h
blob: a2ad706998f9f0d0284960ad2a08fb6ad0ca5470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <typeinfo>

class Random
{
public:
    static void SetSeed(int seed);
    static int RandInt(int min, int max);

private:
    static uint32_t s_seed;
};