-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathRandom.hpp
40 lines (34 loc) · 872 Bytes
/
Random.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/******************************************************************************
* @file Random.hpp
* @author Andrés Gavín Murillo, 716358
* @author Rubén Rodríguez Esteban, 737215
* @date Mayo 2020
* @coms Videojuegos - OutRun
******************************************************************************/
#ifndef OUTRUN_RANDOM_HPP
#define OUTRUN_RANDOM_HPP
/**
* Devuelve un número aleatorio entre cero y uno.
* @return
*/
float random_zero_one();
/**
* Devuelve un número aleatorio entre cero y n.
* @return
*/
int random_zero_n(int n);
/**
* Devuelve un número aleatorio entre min y max.
* @param min
* @param max
* @return
*/
int random_int(int min, int max);
/**
* Devuelve un número aleatorio entre min y max.
* @param min
* @param max
* @return
*/
float random_float(float min, float max);
#endif //OUTRUN_RANDOM_HPP