gfxEngine_documentation
bfg_rndEngine.h
Go to the documentation of this file.
1 #ifndef BFG_RNDENGINE_H
2 #define BFG_RNDENGINE_H
3 
4 /* Génére un nombre aléatoire d'une valeur entre START et END */
5 int rnd_random(int start,int end);
6 
7 int rnd_random2(int start,int end);
8 void rnd_srand2(unsigned int seed);
9 
10 #endif // BFG_RNDENGINE_H
void rnd_srand2(unsigned int seed)
Definition: bfg_rndEngine.c:20
int rnd_random(int start, int end)
Definition: bfg_rndEngine.c:9
int rnd_random2(int start, int end)
Definition: bfg_rndEngine.c:14