diff options
Diffstat (limited to 'src/core/texture.h')
-rw-r--r-- | src/core/texture.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/texture.h b/src/core/texture.h new file mode 100644 index 0000000..d6aee82 --- /dev/null +++ b/src/core/texture.h @@ -0,0 +1,11 @@ +#ifndef _SOFTSHADEROOM_TEXTURE_H_ +#define _SOFTSHADEROOM_TEXTURE_H_ + +#include "vert.h" + +typedef struct Texture{ + uint id;/*identifier*/ + uint width, height; +}Texture; + +#endif
\ No newline at end of file |