diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-07 22:25:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-07 22:25:44 +0200 |
commit | 3f3253ec2fd4c1844f113cb4bb034964cd2964aa (patch) | |
tree | 8b7a1b11e6e9df9c66c697bb9b55d58d83000cec /include/godot_cpp | |
parent | 1507253bd5a8b33df1e72b3848b978bcf4a01586 (diff) | |
parent | 40d181d2f3d31f3607dc535e3d44b3c8ff9a4ca3 (diff) | |
download | redot-cpp-3f3253ec2fd4c1844f113cb4bb034964cd2964aa.tar.gz |
Merge pull request #881 from mihe/builtin-binds
Bind enums in built-in types and expose bindings for global constants
Diffstat (limited to 'include/godot_cpp')
-rw-r--r-- | include/godot_cpp/core/binder_common.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/godot_cpp/core/binder_common.hpp b/include/godot_cpp/core/binder_common.hpp index 93ed731..cdfbdeb 100644 --- a/include/godot_cpp/core/binder_common.hpp +++ b/include/godot_cpp/core/binder_common.hpp @@ -579,4 +579,7 @@ void call_with_ptr_args_static_method_ret(R (*p_method)(P...), const GDNativeTyp } // namespace godot +#include <godot_cpp/classes/global_constants_binds.hpp> +#include <godot_cpp/variant/builtin_binds.hpp> + #endif // ! GODOT_CPP_BINDER_COMMON_HPP |