diff --git a/include/core/Godot.hpp b/include/core/Godot.hpp index 260c226c..5e0829d9 100644 --- a/include/core/Godot.hpp +++ b/include/core/Godot.hpp @@ -78,6 +78,14 @@ struct _ArgCast { } }; +template<> +struct _ArgCast { + static Variant _arg_cast(Variant a) + { + return a; + } +}; +