mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +00:00
936ce5a866
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters
12 lines
173 B
C
12 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
|