GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroup typedef

GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroup = Pointer<NativeFunction<GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroupFunction>>

@name classdb_register_extension_class_property_group @since 4.1

Registers a property group on an extension class in the ClassDB.

@param p_library A pointer the library received by the GDExtension's entry point function. @param p_class_name A pointer to a StringName with the class name. @param p_group_name A pointer to a String with the group name. @param p_prefix A pointer to a String with the prefix used by properties in this group.

Implementation

typedef GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroup =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroupFunction
      >
    >;