//! A vertex
struct Vertex
{
public:
//! the position
Vectorf pos;
//! diffuse colour
Vectorf diffuse;
//unsigned char diffuse;
//! the normal
Vectorf normal;
//! the u co-ordinate
float u,
//! the v co-ordinate
v;
//! the bone this vertex is attached to
int boneID;
};