GDExtensionInterfaceGetVariantFromTypeConstructor typedef

GDExtensionInterfaceGetVariantFromTypeConstructor = Pointer<NativeFunction<GDExtensionInterfaceGetVariantFromTypeConstructorFunction>>

@name get_variant_from_type_constructor @since 4.1

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

@param p_type The Variant type.

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

Implementation

typedef GDExtensionInterfaceGetVariantFromTypeConstructor =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceGetVariantFromTypeConstructorFunction
      >
    >;