mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-11 04:40:36 +01:00
2ae2a551a6
GLES drivers adapted, but only did make compile-tests. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@6038 dfc29bdd-3216-0410-991c-e03cc46cb475
19 lines
342 B
C++
19 lines
342 B
C++
/*!
|
|
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__
|