GDExtensionInterfaceClassdbGetMethodBind typedef

GDExtensionInterfaceClassdbGetMethodBind = Pointer<NativeFunction<GDExtensionInterfaceClassdbGetMethodBindFunction>>

@name classdb_get_method_bind @since 4.1

Gets a pointer to the MethodBind in ClassDB for the given class, method and hash.

@param p_classname A pointer to a StringName with the class name. @param p_methodname A pointer to a StringName with the method name. @param p_hash A hash representing the function signature.

@return A pointer to the MethodBind from ClassDB.

Implementation

typedef GDExtensionInterfaceClassdbGetMethodBind =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceClassdbGetMethodBindFunction>
    >;