mirror of
https://github.com/mangosfour/server.git
synced 2025-12-23 16:37:03 +00:00
[Core] Remove obsolete directive
This commit is contained in:
parent
deb9a167ea
commit
2d06f70da2
57 changed files with 139 additions and 139 deletions
|
|
@ -114,7 +114,7 @@ inline uint32 secsToTimeBitFields(time_t secs)
|
|||
* @param max
|
||||
* @return int32
|
||||
*/
|
||||
MANGOS_DLL_SPEC int32 irand(int32 min, int32 max);
|
||||
int32 irand(int32 min, int32 max);
|
||||
|
||||
/**
|
||||
* @brief Return a random number in the range min..max (inclusive).
|
||||
|
|
@ -126,7 +126,7 @@ MANGOS_DLL_SPEC int32 irand(int32 min, int32 max);
|
|||
* @param max
|
||||
* @return uint32
|
||||
*/
|
||||
MANGOS_DLL_SPEC uint32 urand(uint32 min, uint32 max);
|
||||
uint32 urand(uint32 min, uint32 max);
|
||||
|
||||
/**
|
||||
* @brief Return a random number in the range min..max (inclusive).
|
||||
|
|
@ -135,14 +135,14 @@ MANGOS_DLL_SPEC uint32 urand(uint32 min, uint32 max);
|
|||
* @param max
|
||||
* @return float
|
||||
*/
|
||||
MANGOS_DLL_SPEC float frand(float min, float max);
|
||||
float frand(float min, float max);
|
||||
|
||||
/**
|
||||
* @brief Return a random number in the range 0 .. RAND32_MAX.
|
||||
*
|
||||
* @return int32
|
||||
*/
|
||||
MANGOS_DLL_SPEC int32 rand32();
|
||||
int32 rand32();
|
||||
|
||||
/**
|
||||
* @brief Return a random double from 0.0 to 1.0 (exclusive).
|
||||
|
|
@ -153,14 +153,14 @@ MANGOS_DLL_SPEC int32 rand32();
|
|||
*
|
||||
* @return double
|
||||
*/
|
||||
MANGOS_DLL_SPEC double rand_norm(void);
|
||||
double rand_norm(void);
|
||||
|
||||
/**
|
||||
* @brief
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
MANGOS_DLL_SPEC float rand_norm_f(void);
|
||||
float rand_norm_f(void);
|
||||
|
||||
/**
|
||||
* @brief Return a random double from 0.0 to 99.9999999999999.
|
||||
|
|
@ -171,14 +171,14 @@ MANGOS_DLL_SPEC float rand_norm_f(void);
|
|||
*
|
||||
* @return double
|
||||
*/
|
||||
MANGOS_DLL_SPEC double rand_chance(void);
|
||||
double rand_chance(void);
|
||||
|
||||
/**
|
||||
* @brief
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
MANGOS_DLL_SPEC float rand_chance_f(void);
|
||||
float rand_chance_f(void);
|
||||
|
||||
/**
|
||||
* @brief Return true if a random roll gets above the given chance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue