dbf-udg

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/texture.h	Fri Jan 11 22:52:56 2013 +0200
     1.3 @@ -0,0 +1,15 @@
     1.4 +#ifndef TEXTURE_H_
     1.5 +#define TEXTURE_H_
     1.6 +
     1.7 +#ifdef __cplusplus
     1.8 +extern "C" {
     1.9 +#endif
    1.10 +
    1.11 +unsigned int load_texture(const char *fname);
    1.12 +void free_texture(unsigned int tex);
    1.13 +
    1.14 +#ifdef __cplusplus
    1.15 +}
    1.16 +#endif
    1.17 +
    1.18 +#endif	/* TEXTURE_H_ */