| 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 | |
| 571 | godot::Callable GodotModule::create_callable(std::function<void(const godot::Variant **, int, godot::Variant &, GDExtensionCallError &)> f) { |
nothing calls this directly
no outgoing calls
no test coverage detected