blob: e3bef7d17aca64389f307ad5610999ac72e6c7ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef BLACKSHADES_MISC_H
#define BLACKSHADES_MISC_H
#include <AL/al.h>
#include <GL/gl.h>
extern "C" ALuint loadSound(const char*);
extern "C" GLuint loadTexture(const char*);
#endif // BLACKSHADES_MISC_H
|