[Fix]: Add the <stdbool.h> include header if using raymath.h as a standalone

This commit is contained in:
Victor Gallet 2020-12-22 11:34:16 +01:00 committed by GitHub
parent 668b3e4cfb
commit 9b73eeb11f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,8 @@
#ifndef RAYMATH_STANDALONE
#include "raylib.h" // Required for structs: Vector3, Matrix
#else
#include <stdbool.h>
#endif
#if defined(RAYMATH_IMPLEMENTATION) && defined(RAYMATH_HEADER_ONLY)