summaryrefslogtreecommitdiffstats
path: root/zoom/texture.h
blob: 23540d7bf5e1dc5b8312378f26035fe3ceadcc4a (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ZOOM_TEXTURE_H
#define ZOOM_TEXTURE_H

typedef struct _TEXLIST {
	char name[30];
	GLuint id;
} TEXLIST;

GLuint LoadTexture(char *);

#endif