Trace Engine
A Raycaster Engine in C
Loading...
Searching...
No Matches
trc_random.h
Go to the documentation of this file.
1
10void trc_set_RNG_seed(int seed);
11
12/***
13 * Sets the Random Number Generator a random seed, so
14 * every time the game starts it generates new numbers
15 *
16 * @note Run only ONCE at the start of the program
17 */
19
26int trc_random_int(int min, int max);
27
void trc_set_RNG_random_seed(void)
Definition trc_random.c:11
int trc_random_int(int min, int max)
Definition trc_random.c:16
void trc_set_RNG_seed(int seed)
Definition trc_random.c:6