sound.h 342 B

12345678910111213141516171819
  1. /*!
  2. Sound Factory.
  3. provides a sound interface
  4. */
  5. #ifndef __QUAKE3_SOUND__H_INCLUDED__
  6. #define __QUAKE3_SOUND__H_INCLUDED__
  7. #include <irrlicht.h>
  8. using namespace irr;
  9. void sound_init ( IrrlichtDevice *device );
  10. void sound_shutdown ();
  11. void background_music ( const c8 * file );
  12. #endif // __QUAKE3_SOUND__H_INCLUDED__