Fix the code style issues

This commit is contained in:
Walied K. Yassen
2020-11-30 02:57:58 +02:00
parent ac7ea2b9fa
commit 1dcd7c5b14
3 changed files with 110 additions and 99 deletions

View File

@@ -160,10 +160,6 @@ public:
static int32 GetRandomNumberInRange(int32 low, int32 high)
{ return low + (high - low)*(GetRandomNumber()/float(MYRAND_MAX + 1)); }
// Returns inclusive value in the specified range
static int32 GetRandomNumberInRangeInc(int32 low, int32 high)
{ return GetRandomNumberInRange(low - 1, high + 1); }
static void SetRandomSeed(int32 seed)
{ mysrand(seed); }
};