Initial commit

This commit is contained in:
Borys Kostka
2022-07-19 19:39:33 +02:00
commit ecbf661953
234 changed files with 470267 additions and 0 deletions

5
Sound.h Normal file
View File

@@ -0,0 +1,5 @@
#include <AL/al.h>
void initAudioEngine();
int stopAudioEngine();
ALuint playSound(int sourceToUse, int loop, ALuint buffer);
ALuint loadSound(const char filename[]);