GDExtensionInterfaceGetVariantToTypeConstructor typedef

GDExtensionInterfaceGetVariantToTypeConstructor = Pointer<NativeFunction<GDExtensionInterfaceGetVariantToTypeConstructorFunction>>

@name get_variant_to_type_constructor @since 4.1

Gets a pointer to a function that can get the raw value from a Variant of the given type.

@param p_type The Variant type.

@return A pointer to a function that can get the raw value from a Variant of the given type.

Implementation

typedef GDExtensionInterfaceGetVariantToTypeConstructor =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceGetVariantToTypeConstructorFunction
      >
    >;