PogoBijoux/Sound.h
2022-07-19 19:39:33 +02:00

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[]);