summaryrefslogtreecommitdiff
path: root/source/math.h
diff options
context:
space:
mode:
authortalha <sarcxd@gmail.com>2025-01-25 14:47:58 +0500
committertalha <sarcxd@gmail.com>2025-01-25 14:47:58 +0500
commitf3cb74c061e133e2e959a04c5e4e0c155c716407 (patch)
treed0dc13e6308ece6e43cd7649f34330d63f612dc1 /source/math.h
parentf72380b9a537ca083d09f73230c05136e63adb23 (diff)
Updated level file format, Updated player movement:
- Can add comments in a level file - Player movement slightly improved
Diffstat (limited to 'source/math.h')
-rwxr-xr-xsource/math.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/math.h b/source/math.h
index 1d0ebc2..be1432f 100755
--- a/source/math.h
+++ b/source/math.h
@@ -1,6 +1,8 @@
#ifndef MATH_H
#define MATH_H
+#include <math.h>
+
#define PI 3.14159265358979323846264338327950288f
#define SQUARE(x) ((x)*(x))
#define TO_RAD(x) ((x) * PI / 180.0f)