This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neofx-libzoom/zoom/texture.h
2005-04-22 19:51:02 +00:00

11 lines
160 B
C

#ifndef ZOOM_TEXTURE_H
#define ZOOM_TEXTURE_H
typedef struct _TEXLIST {
char name[30];
GLuint id;
} TEXLIST;
GLuint LoadTexture(char *);
#endif