The Game Engine  1
Texture.h
Go to the documentation of this file.
1 #ifndef __TEXTURE_H__
2 #define __TEXTURE_H__
3 #include "fns.h"
4 
14 struct Texture{
15  Texture():image(0),count(0){}
16  GLuint image;
17  unsigned int count;
18 };
19 
20 #endif