diff options
author | David Snopek <dsnopek@gmail.com> | 2023-09-02 08:04:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 08:04:29 -0500 |
commit | 8990d5a40ee93eb84d7eda590793b0901f1f7584 (patch) | |
tree | 742a88d0c11e6c93569021e61d82226906afe222 /include/godot_cpp | |
parent | 9ada7065d64bff3d1b87f4e0de1a52d88959731e (diff) | |
parent | 3536803e9e92ff1877e4e2e0ae113b17fe415e5f (diff) | |
download | redot-cpp-8990d5a40ee93eb84d7eda590793b0901f1f7584.tar.gz |
Merge pull request #1091 from Daylily-Zeleen/daylily-zeleen/implement_builtin_classes_vararg_methods
Implement vararg methods of builtin classes.
Diffstat (limited to 'include/godot_cpp')
-rw-r--r-- | include/godot_cpp/variant/variant.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/godot_cpp/variant/variant.hpp b/include/godot_cpp/variant/variant.hpp index 06ba75f..3b5ca56 100644 --- a/include/godot_cpp/variant/variant.hpp +++ b/include/godot_cpp/variant/variant.hpp @@ -334,6 +334,8 @@ String vformat(const String &p_text, const VarArgs... p_args) { return p_text % args_array; } +#include <godot_cpp/variant/builtin_vararg_methods.hpp> + } // namespace godot #endif // GODOT_VARIANT_HPP |