about summary refs log tree commit diff stats
path: root/Source/Random.h
blob: 179f0fac4fa744aee75f887010407e7b80cc2fa4 (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;
};