| 569 | }; |
| 570 | |
| 571 | godot::Callable GodotModule::create_callable(std::function<void(const godot::Variant **, int, godot::Variant &, GDExtensionCallError &)> f) { |
| 572 | return godot::Callable(memnew(CPPCallable(f))); |
| 573 | } |
| 574 | |
| 575 | void GodotModule::registerWindowUpdateCallback(std::string name, void *handle, std::function<void(bool)> f, void *ref) { |
| 576 | AndroidPlatformData *data = static_cast<AndroidPlatformData *>(_data); |
nothing calls this directly
no test coverage detected