GDExtensionInterfaceVariantGetPtrBuiltinMethod typedef

GDExtensionInterfaceVariantGetPtrBuiltinMethod = Pointer<NativeFunction<GDExtensionInterfaceVariantGetPtrBuiltinMethodFunction>>

@name variant_get_ptr_builtin_method @since 4.1

Gets a pointer to a function that can call a builtin method on a type of Variant.

@param p_type The Variant type. @param p_method A pointer to a StringName with the method name. @param p_hash A hash representing the method signature.

@return A pointer to a function that can call a builtin method on a type of Variant.

Implementation

typedef GDExtensionInterfaceVariantGetPtrBuiltinMethod =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceVariantGetPtrBuiltinMethodFunction>
    >;