initial
This commit is contained in:
8
public/tier0/valve_minmax_on.h
Normal file
8
public/tier0/valve_minmax_on.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef min
|
||||
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#ifndef max
|
||||
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user