blob: 8db616c104f9c05b932aabbce1e64f2a714f8c90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
class Random {
public:
static float f(float upper = 1.0, float lower = 0.0);
static double d(double upper = 1.0, double lower = 0.0);
static int i(int upper, int lower = 0);
static unsigned u(unsigned upper, unsigned lower = 0);
static bool b();
};
|