raylib-cpp
C++ object-oriented wrapper library for raylib.
utils.hpp
1 #ifndef RAYLIB_CPP_UTILS_HPP_
2 #define RAYLIB_CPP_UTILS_HPP_
3 
4 #ifndef GETTERSETTER
5 
12 #define GETTERSETTER(type, method, name) \
13  inline type Get##method() { return name; } \
14  inline void Set##method(type value) { name = value; }
15 #endif
16 
17 #endif