summaryrefslogtreecommitdiffstats
path: root/zoom/texture.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2005-04-18 17:27:00 +0200
committerneoraider <devnull@localhost>2005-04-18 17:27:00 +0200
commitf3df7ef89aa15aed2e4d68e2b414d31aef57f976 (patch)
tree53c5630e7a890dc6c1b0b0a2d631119a21da984a /zoom/texture.h
downloadlibzoom-f3df7ef89aa15aed2e4d68e2b414d31aef57f976.tar
libzoom-f3df7ef89aa15aed2e4d68e2b414d31aef57f976.zip
Verzeichnisstruktur ge?ndert
Diffstat (limited to 'zoom/texture.h')
-rw-r--r--zoom/texture.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/zoom/texture.h b/zoom/texture.h
new file mode 100644
index 0000000..c40f2f6
--- /dev/null
+++ b/zoom/texture.h
@@ -0,0 +1,11 @@
+#ifndef GAME_TEXTURE_H
+#define GAME_TEXTURE_H
+
+typedef struct _TEXLIST {
+ char name[30];
+ GLuint id;
+} TEXLIST;
+
+GLuint LoadTexture(char *);
+
+#endif