Files
funnygame/public/tier0/minmax_off.h
2025-07-30 23:53:26 +03:00

10 lines
266 B
C

//================= Copyright kotofyt, All rights reserved ==================//
// Purpose: Disables min and max. Used for C++ interoperability
//===========================================================================//
#ifdef min
#undef min
#undef max
#endif