blob: 0f0f79b9dc5d1f86399cc49af2f690d02c06eabf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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();
};
|