From 9b73eeb11fa22095e705d13671263c24642014ee Mon Sep 17 00:00:00 2001 From: Victor Gallet Date: Tue, 22 Dec 2020 11:34:16 +0100 Subject: [PATCH] [Fix]: Add the include header if using raymath.h as a standalone --- src/raymath.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/raymath.h b/src/raymath.h index 4ab5468af..5e87c7d04 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -47,6 +47,8 @@ #ifndef RAYMATH_STANDALONE #include "raylib.h" // Required for structs: Vector3, Matrix +#else + #include #endif #if defined(RAYMATH_IMPLEMENTATION) && defined(RAYMATH_HEADER_ONLY)