summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp
diff options
context:
space:
mode:
authorDaylily-Zeleen <daylily-zeleen@foxmail.com>2023-04-14 15:33:49 +0800
committerDaylily-Zeleen <daylily-zeleen@foxmail.com>2023-07-03 17:30:42 +0800
commit3536803e9e92ff1877e4e2e0ae113b17fe415e5f (patch)
tree218b427997a43bdede4ffb4bfecc3f7f438b4892 /include/godot_cpp
parentff6f5792d27cab4006353cffde73ffc3fb87b480 (diff)
downloadredot-cpp-3536803e9e92ff1877e4e2e0ae113b17fe415e5f.tar.gz
Implement vararg methods of builtin classes.
Diffstat (limited to 'include/godot_cpp')
-rw-r--r--include/godot_cpp/variant/variant.hpp2
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