Skip to content

Commit a7f2243

Browse files
committed
Fix classdb_register_extension_class* documentation in core/extension/gdextension_interface.h
1 parent 4ebf67c commit a7f2243

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/extension/gdextension_interface.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2938,7 +2938,7 @@ typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass2)(GDExtensionCl
29382938
* @param p_library A pointer the library received by the GDExtension's entry point function.
29392939
* @param p_class_name A pointer to a StringName with the class name.
29402940
* @param p_parent_class_name A pointer to a StringName with the parent class name.
2941-
* @param p_extension_funcs A pointer to a GDExtensionClassCreationInfo2 struct.
2941+
* @param p_extension_funcs A pointer to a GDExtensionClassCreationInfo3 struct.
29422942
*/
29432943
typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass3)(GDExtensionClassLibraryPtr p_library, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstStringNamePtr p_parent_class_name, const GDExtensionClassCreationInfo3 *p_extension_funcs);
29442944

@@ -2954,7 +2954,7 @@ typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass3)(GDExtensionCl
29542954
* @param p_library A pointer the library received by the GDExtension's entry point function.
29552955
* @param p_class_name A pointer to a StringName with the class name.
29562956
* @param p_parent_class_name A pointer to a StringName with the parent class name.
2957-
* @param p_extension_funcs A pointer to a GDExtensionClassCreationInfo2 struct.
2957+
* @param p_extension_funcs A pointer to a GDExtensionClassCreationInfo4 struct.
29582958
*/
29592959
typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass4)(GDExtensionClassLibraryPtr p_library, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstStringNamePtr p_parent_class_name, const GDExtensionClassCreationInfo4 *p_extension_funcs);
29602960

@@ -2969,7 +2969,7 @@ typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass4)(GDExtensionCl
29692969
* @param p_library A pointer the library received by the GDExtension's entry point function.
29702970
* @param p_class_name A pointer to a StringName with the class name.
29712971
* @param p_parent_class_name A pointer to a StringName with the parent class name.
2972-
* @param p_extension_funcs A pointer to a GDExtensionClassCreationInfo2 struct.
2972+
* @param p_extension_funcs A pointer to a GDExtensionClassCreationInfo5 struct.
29732973
*/
29742974
typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass5)(GDExtensionClassLibraryPtr p_library, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstStringNamePtr p_parent_class_name, const GDExtensionClassCreationInfo5 *p_extension_funcs);
29752975

0 commit comments

Comments
 (0)