| 404 | } |
| 405 | |
| 406 | void AbyssEngine::addSoundEffect(Common::SoundEffectInterface *soundEffect) { _soundEffects.push_back(soundEffect); } |
| 407 | |
| 408 | void AbyssEngine::removeSoundEffect(Common::SoundEffectInterface *soundEffect) { |
| 409 | _soundEffects.erase(std::ranges::remove(_soundEffects, soundEffect).begin(), _soundEffects.end()); |