blob: cf05e878f1f26bbfd26a39031ad84e8e02551056 (
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);
};
|