Redline/source/random.h
maride 02061d74c2 Original 1.0.5 code
(as received from Jonas Echterhoff)
2016-04-02 14:43:55 +02:00

1 line
158 B
C

#ifndef __RANDOM
#define __RANDOM
void RandomInit();
float RandomFl(float min,float max);
int RandomInt(int min,int max);
int RandomProb(float prob);
#endif