dungeon_crawler

view prototype/src/audio/openal.h @ 47:d52711f2b9a1

started writting audio code
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 16 Sep 2012 08:16:50 +0300
parents
children
line source
1 #ifndef OPENAL_H_
2 #define OPENAL_H_
4 #ifndef __APPLE__
5 #include <AL/al.h>
6 #include <AL/alc.h>
7 #else
8 #include <OpenAL/al.h>
9 #include <OpenAL/alc.h>
10 #endif
12 #endif /* OPENAL_H_ */