blob: 033e9bb6770fd656f4e43e895a0cd2e25952564f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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__
|