dungeon_crawler

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/prototype/src/audio/openal.h	Sun Sep 16 08:16:50 2012 +0300
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef OPENAL_H_
     1.5 +#define OPENAL_H_
     1.6 +
     1.7 +#ifndef __APPLE__
     1.8 +#include <AL/al.h>
     1.9 +#include <AL/alc.h>
    1.10 +#else
    1.11 +#include <OpenAL/al.h>
    1.12 +#include <OpenAL/alc.h>
    1.13 +#endif
    1.14 +
    1.15 +#endif	/* OPENAL_H_ */