raylib-cpp
C++ object-oriented wrapper library for raylib.
raymath.hpp
1 
4 #ifndef RAYLIB_CPP_INCLUDE_RAYMATH_HPP_
5 #define RAYLIB_CPP_INCLUDE_RAYMATH_HPP_
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 #ifndef RAYLIB_CPP_NO_MATH
11 #pragma GCC diagnostic push
12 #pragma GCC diagnostic ignored "-Wmissing-field-initializers"
13 #include "raymath.h" // NOLINT
14 #pragma GCC diagnostic pop
15 #endif
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #endif // RAYLIB_CPP_INCLUDE_RAYMATH_HPP_