| 471 | } |
| 472 | |
| 473 | bool GodotModule::is_paused() { |
| 474 | std::lock_guard lock(_mutex); |
| 475 | AndroidPlatformData *data = static_cast<AndroidPlatformData *>(_data); |
| 476 | return data->paused; |
| 477 | } |
| 478 | |
| 479 | void GodotModule::appPause() { |
| 480 | std::lock_guard lock(_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected