diff options
Diffstat (limited to 'Source/Random.h')
-rw-r--r-- | Source/Random.h | 6 |
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 @@ | |||
4 | class Random | 4 | class Random |
5 | { | 5 | { |
6 | public: | 6 | public: |
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 | ||
10 | private: | 10 | private: |
11 | static int s_seed; | 11 | static int s_seed; |
12 | }; | 12 | }; |