polserver/pol-core/clib/random.h
turley 189cad3479 Formating everything
Authors are not forced to use the clang-format setting, but should
atleast be inspired by the style.
The only thing which is now not allowed are tabs for ident/alignment!
2016-02-19 19:26:35 +01:00

22 lines
315 B
C++

/** @file
*
* @par History
* - 2008/07/08 Turley: Added Random Number Generator "lagged Fibonacci generator"
*/
#ifndef RANDOM_H
#define RANDOM_H
namespace Pol
{
namespace Clib
{
double random_double( double f );
int random_int( int i );
int random_int_range( int minI, int maxI );
}
}
#endif // RANDOM_H