mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-25 02:01:39 +00:00
13 lines
173 B
C
13 lines
173 B
C
|
|
||
|
#ifndef __random_h__
|
||
|
#define __random_h__
|
||
|
|
||
|
void InitRandom();
|
||
|
int RandomBit();
|
||
|
char RandomByte();
|
||
|
short RandomWord();
|
||
|
long RandomLong();
|
||
|
int RandomSize(int nSize);
|
||
|
|
||
|
#endif
|