This commit is contained in:
Bram Verhulst
2024-06-09 22:03:29 +02:00
parent d7389411f5
commit 5f1dcd5788
76 changed files with 1532 additions and 385 deletions

View File

@@ -58,3 +58,6 @@ void SoundEffect::PauseAll() {
void SoundEffect::ResumeAll() {
Mix_Resume(-1);
}
bool SoundEffect::IsPlaying() const {
return Mix_Playing(m_Channel);
}