MCPcopy Create free account
hub / github.com/borndotcom/react-native-godot / call

Method call

android/src/main/cpp/GodotModule.cpp:565–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

563 return godot::ObjectID();
564 }
565 void call(const godot::Variant **p_arguments, int p_argcount, godot::Variant &r_return_value, GDExtensionCallError &r_call_error) const override {
566 _func(p_arguments, p_argcount, r_return_value, r_call_error);
567 r_call_error.error = GDEXTENSION_CALL_OK;
568 }
569};
570
571godot::Callable GodotModule::create_callable(std::function<void(const godot::Variant **, int, godot::Variant &, GDExtensionCallError &)> f) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected