You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
620 B
C++
32 lines
620 B
C++
/**
|
|
* C++ header to wrap raylib.h.
|
|
*/
|
|
#ifndef RAYLIB_CPP_INCLUDE_RAYLIB_HPP_
|
|
#define RAYLIB_CPP_INCLUDE_RAYLIB_HPP_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef RAYLIB_H_FILE
|
|
#define RAYLIB_H_FILE "raylib.h"
|
|
#endif
|
|
|
|
#include RAYLIB_H_FILE // NOLINT
|
|
|
|
#if !defined(RAYLIB_VERSION_MAJOR) || !defined(RAYLIB_VERSION_MINOR)
|
|
#if RAYLIB_VERSION_MAJOR < 5
|
|
#error "raylib-cpp requires at least raylib 5.0.0"
|
|
#endif
|
|
#endif
|
|
|
|
#if RAYLIB_VERSION_MAJOR > 5
|
|
#error "raylib-cpp targets raylib 5. Use the `next` branch for the next version of raylib."
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // RAYLIB_CPP_INCLUDE_RAYLIB_HPP_
|