mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-15 23:20:53 +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
|