dbf-udg

view src/texture.h @ 3:403ec1be3a1a

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 11 Jan 2013 22:52:56 +0200
parents
children
line source
1 #ifndef TEXTURE_H_
2 #define TEXTURE_H_
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 unsigned int load_texture(const char *fname);
9 void free_texture(unsigned int tex);
11 #ifdef __cplusplus
12 }
13 #endif
15 #endif /* TEXTURE_H_ */