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

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

private:
    static uint32_t s_seed;
};