summary refs log tree commit diff stats
path: root/Source/Random.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Random.h')
-rw-r--r--Source/Random.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Random.h b/Source/Random.h index 179f0fa..46287a1 100644 --- a/Source/Random.h +++ b/Source/Random.h
@@ -4,9 +4,9 @@
4class Random 4class Random
5{ 5{
6public: 6public:
7 static void SetSeed(int seed); 7 static void SetSeed(int seed);
8 static int RandInt(int min, int max); 8 static int RandInt(int min, int max);
9 9
10private: 10private:
11 static int s_seed; 11 static int s_seed;
12}; 12};