| 24 | void SoundEffect::stop() { _audioStream->stop(); } |
| 25 | |
| 26 | void SoundEffect::pause() { _audioStream->pause(); } |
| 27 | |
| 28 | bool SoundEffect::getIsPaused() { return _audioStream->isPaused(); } |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected