1
2
3
4
5
6 #ifndef SOULNG_UTIL_RANDOM_INCLUDED
7 #define SOULNG_UTIL_RANDOM_INCLUDED
8 #include <soulng/util/UtilApi.hpp>
9 #include <stdint.h>
10
11 namespace soulng { namespace util {
12
13 void InitMt(uint32_t seed);
14
15 uint32_t Random();
16 uint64_t Random64();
17
18 } }
19
20 #endif // SOULNG_UTIL_RANDOM_INCLUDED