summary refs log tree commit diff stats
path: root/Source/Random.h
blob: 46287a178b4c90d8e6e4a382aa2b8567a24343e2 (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 int s_seed;
};