From cd423cbf547b72d6360fa574664ca7bc612e3cc2 Mon Sep 17 00:00:00 2001 From: talha Date: Mon, 10 Feb 2025 17:22:15 +0500 Subject: improved gravity flipping block --- source/math.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/math.h') diff --git a/source/math.h b/source/math.h index ff76c0e..b189c89 100755 --- a/source/math.h +++ b/source/math.h @@ -9,6 +9,7 @@ #define TO_DEG(x) ((x) * 180.0f / PI) #define ABS(x) ((x) < 0 ? (-(x)) : (x)) #define MIN(x,y) ((x) < (y) ? (x) : (y)) +#define MAX(x,y) ((x) > (y) ? (x) : (y)) // @todo: // - make everything simd -- cgit v1.2.3