dbf-udg

view src/texture.h @ 11:5f99c4c7a9fe

now it looks pretty much ok
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 20 Feb 2013 04:55:03 +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_ */