mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-16 07:31:23 +00:00
50349a6b3d
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters # source/build/include/build.h # source/build/src/palette.cpp
12 lines
172 B
C
12 lines
172 B
C
|
|
#ifndef __random_h__
|
|
#define __random_h__
|
|
|
|
void InitRandom();
|
|
int RandomBit();
|
|
char RandomByte();
|
|
short RandomWord();
|
|
int RandomLong();
|
|
int RandomSize(int nSize);
|
|
|
|
#endif
|