summaryrefslogtreecommitdiff
path: root/src/core/texture.h
blob: d6aee82285cc81ae12c030de7e04230d17fdc7da (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SOFTSHADEROOM_TEXTURE_H_
#define _SOFTSHADEROOM_TEXTURE_H_

#include "vert.h"

typedef struct Texture{
	uint id;/*identifier*/
	uint width, height;
}Texture;

#endif