Add random generator that accepts state for repetability
This commit is contained in:
8
inc/values/mrand.hpp
Normal file
8
inc/values/mrand.hpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <inttypes.h>
|
||||
|
||||
namespace mrand
|
||||
{
|
||||
void setSeed(unsigned long long seed);
|
||||
int getValue(int min, int max);
|
||||
float getFloat();
|
||||
}
|
Reference in New Issue
Block a user