aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/music.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/music.h')
-rw-r--r--engines/sherlock/music.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/sherlock/music.h b/engines/sherlock/music.h
index ca203da019..afd3a429be 100644
--- a/engines/sherlock/music.h
+++ b/engines/sherlock/music.h
@@ -31,6 +31,7 @@
#include "audio/audiostream.h"
#include "audio/mixer.h"
#include "common/mutex.h"
+#include "common/str-array.h"
namespace Sherlock {
@@ -121,9 +122,13 @@ public:
* Sets the volume of the MIDI music with a value ranging from 0 to 127
*/
void setMusicVolume(int volume);
+
+ /**
+ * Gets the names of all the songs in the game. Used by the debugger.
+ */
+ void getSongNames(Common::StringArray &songs);
};
} // End of namespace Sherlock
#endif
-