summaryrefslogtreecommitdiff
path: root/Runtime/Math/Math.h
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Math/Math.h')
-rw-r--r--Runtime/Math/Math.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Runtime/Math/Math.h b/Runtime/Math/Math.h
index 370b91c..7f61544 100644
--- a/Runtime/Math/Math.h
+++ b/Runtime/Math/Math.h
@@ -5,3 +5,7 @@
#include "Vector4.h"
#include "Matrix44.h"
#include "FloatConversion.h"
+#include "Rect.h"
+
+#define max(a, b)\
+(a)>(b)?(a):(b)