From a1b960be35dc17010ae2f90ae4e743a417078e02 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 27 Sep 2003 01:47:19 +0000 Subject: [PATCH] Allow read-only access to the lsit of currently-playing sounds. --- stepmania/src/RageSoundManager.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/RageSoundManager.h b/stepmania/src/RageSoundManager.h index 1b8089dc41..2fd7734b9c 100644 --- a/stepmania/src/RageSoundManager.h +++ b/stepmania/src/RageSoundManager.h @@ -49,6 +49,7 @@ public: void AddFakeSound(RageSound *snd); /* used by drivers */ float GetPlayLatency() const; int GetDriverSampleRate() const; + const set &GetPlayingSounds() const { return playing_sounds; } void PlayOnce( CString sPath ); static void PlayOnceFromDir( CString sDir );