ccarctrl big fix

This commit is contained in:
Nikolay Korolev
2020-05-09 20:21:13 +03:00
parent e30b538cd3
commit a55e738dfa
10 changed files with 184 additions and 36 deletions

View File

@@ -145,4 +145,6 @@ public:
static int32 GetRandomNumberInRange(int32 low, int32 high)
{ return low + (high - low)*(GetRandomNumber()/float(MYRAND_MAX + 1)); }
static void SetRandomSeed(int32 seed)
{ mysrand(seed); }
};