6 lines
167 B
C
6 lines
167 B
C
|
#include <AL/al.h>
|
||
|
void initAudioEngine();
|
||
|
int stopAudioEngine();
|
||
|
ALuint playSound(int sourceToUse, int loop, ALuint buffer);
|
||
|
ALuint loadSound(const char filename[]);
|