added command line, added basic character
This commit is contained in:
8
public/tier0/minmax.h
Normal file
8
public/tier0/minmax.h
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
#ifdef min
|
||||
#undef min
|
||||
#undef max
|
||||
#endif
|
||||
|
||||
#define max(x, y) (((x) > (y)) ? (x) : (y))
|
||||
#define min(x, y) (((x) < (y)) ? (x) : (y))
|
||||
Reference in New Issue
Block a user