raze/source/exhumed/src/util.h
nukeykt 50349a6b3d wip
# Conflicts:
#	platform/Windows/exhumed.vcxproj
#	platform/Windows/exhumed.vcxproj.filters
#	source/build/include/build.h
#	source/build/src/palette.cpp
2019-11-21 22:59:33 +01:00

21 lines
235 B
C

#ifndef __util_h__
#define __util_h__
inline int Min(int a, int b)
{
if (a < b)
return a;
else
return b;
}
inline int Max(int a, int b)
{
if (a < b)
return b;
else
return a;
}
#endif