no engine anymore
This commit is contained in:
8
public/tier0/minmax_on.h
Normal file
8
public/tier0/minmax_on.h
Normal file
@@ -0,0 +1,8 @@
|
||||
//================= Copyright kotofyt, All rights reserved ==================//
|
||||
// Purpose: Enables min and max. Used for C++ interoperability
|
||||
//===========================================================================//
|
||||
|
||||
#include "minmax_off.h"
|
||||
|
||||
#define max(x, y) (((x) > (y)) ? (x) : (y))
|
||||
#define min(x, y) (((x) < (y)) ? (x) : (y))
|
||||
Reference in New Issue
Block a user