raylib-cpp
C++ object-oriented wrapper library for raylib.
include
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
Generated on Sat Apr 25 2020 16:06:58 for raylib-cpp by
1.8.13