aboutsummaryrefslogtreecommitdiff
path: root/simon/sound.h
diff options
context:
space:
mode:
authorMax Horn2003-10-03 19:42:27 +0000
committerMax Horn2003-10-03 19:42:27 +0000
commita4b72c9d6e02470551f71276e5d46bd3dbc921f7 (patch)
tree5371ad9bf8a999aa246d9f086cd3197561b7895d /simon/sound.h
parent5fa23e5fee79e2ce99cdda3d890574c969f10f58 (diff)
downloadscummvm-rg350-a4b72c9d6e02470551f71276e5d46bd3dbc921f7.tar.gz
scummvm-rg350-a4b72c9d6e02470551f71276e5d46bd3dbc921f7.tar.bz2
scummvm-rg350-a4b72c9d6e02470551f71276e5d46bd3dbc921f7.zip
Simon namespace
svn-id: r10574
Diffstat (limited to 'simon/sound.h')
-rw-r--r--simon/sound.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/simon/sound.h b/simon/sound.h
index d6faaff251..52882ea2f6 100644
--- a/simon/sound.h
+++ b/simon/sound.h
@@ -17,9 +17,14 @@
*
*/
+#ifndef SIMON_SOUND_H
+#define SIMON_SOUND_H
+
#include "sound/mixer.h"
#include "simon/intern.h"
+namespace Simon {
+
class BaseSound;
class SimonSound {
@@ -67,3 +72,6 @@ public:
void ambientPause(bool b);
};
+} // End of namespace Simon
+
+#endif