| 621 | } |
| 622 | |
| 623 | void AudioEngine::addTask(const std::function<void()>& task) |
| 624 | { |
| 625 | lazyInit(); |
| 626 | Director::getInstance()->getJobSystem()->enqueue(task); |
| 627 | } |
| 628 | |
| 629 | int AudioEngine::getPlayingAudioCount() |
| 630 | { |
nothing calls this directly
no test coverage detected