1 /*
2 * This code is released under the GNU General Public License.  See COPYING for
3 * details.  Copyright 2003 John Spray: spray_john@users.sourceforge.net
4 */
5 
6 
7 #ifndef TEXTURE_H
8 #define TEXTURE_H
9 
10 class Texture{
11 public:
12 	Texture();
13 	int glid;
14 	char filename[128];
15 };
16 
17 #endif //TEXTURE_H
18