diff options
Diffstat (limited to 'src/core/General.h')
-rw-r--r-- | src/core/General.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/General.h b/src/core/General.h index 12f781d4..8f9aa044 100644 --- a/src/core/General.h +++ b/src/core/General.h @@ -114,6 +114,8 @@ public: // not too sure about all these... static uint16 GetRandomNumber(void) { return myrand() & MYRAND_MAX; } + static bool GetRandomTrueFalse(void) + { return GetRandomNumber() < MYRAND_MAX / 2; } // Probably don't want to ever reach high static float GetRandomNumberInRange(float low, float high) { return low + (high - low)*(GetRandomNumber()/float(MYRAND_MAX + 1)); } |