mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 08:50:55 +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
|