summaryrefslogtreecommitdiffstats
path: root/zoom/texture.h
diff options
context:
space:
mode:
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