summaryrefslogtreecommitdiff
path: root/examples/21.Quake3Explorer/sound.h
diff options
context:
space:
mode:
authorMirrorbot <mirrorbot@cogarr.net>2025-12-27 17:53:06 -0600
committerMirrorbot <mirrorbot@cogarr.net>2025-12-27 17:53:06 -0600
commit71e94ee161447b84c0eaabf6567f8fa62262cd3e (patch)
tree391064cc6173a6fe75069af2fdc1978af12f623e /examples/21.Quake3Explorer/sound.h
downloadirrlicht-master.tar.gz
irrlicht-master.tar.bz2
irrlicht-master.zip
Inital commitHEADmaster
Diffstat (limited to 'examples/21.Quake3Explorer/sound.h')
-rw-r--r--examples/21.Quake3Explorer/sound.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/21.Quake3Explorer/sound.h b/examples/21.Quake3Explorer/sound.h
new file mode 100644
index 0000000..033e9bb
--- /dev/null
+++ b/examples/21.Quake3Explorer/sound.h
@@ -0,0 +1,18 @@
+/*!
+ Sound Factory.
+ provides a sound interface
+
+*/
+#ifndef __QUAKE3_SOUND__H_INCLUDED__
+#define __QUAKE3_SOUND__H_INCLUDED__
+
+#include <irrlicht.h>
+
+using namespace irr;
+
+void sound_init ( IrrlichtDevice *device );
+void sound_shutdown ();
+void background_music ( const c8 * file );
+
+
+#endif // __QUAKE3_SOUND__H_INCLUDED__