raylib-cpp
C++ object-oriented wrapper library for raylib.
Loading...
Searching...
No Matches
raymath.hpp
1
4#ifndef RAYLIB_CPP_INCLUDE_RAYMATH_HPP_
5#define RAYLIB_CPP_INCLUDE_RAYMATH_HPP_
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10#ifndef RAYLIB_CPP_NO_MATH
11#ifndef RAYMATH_STATIC_INLINE
12#define RAYMATH_STATIC_INLINE
13#endif
14#ifdef __GNUC__
15#pragma GCC diagnostic push // These throw a warnings on visual studio, need to check if __GNUC__ is defined to use it.
16#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
17#endif
18#include "raymath.h" // NOLINT
19#ifdef __GNUC__
20#pragma GCC diagnostic pop
21#endif
22#endif
23#ifdef __cplusplus
24}
25#endif
26
27#endif // RAYLIB_CPP_INCLUDE_RAYMATH_HPP_