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

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

GLuint LoadTexture(char *);

#endif