mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-15 23:20:53 +00:00
50349a6b3d
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters # source/build/include/build.h # source/build/src/palette.cpp
21 lines
235 B
C
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
|