add VertexRef

This commit is contained in:
Josh Holtrop 2011-04-19 15:59:55 -04:00
parent f46f887472
commit e7f7ca4b3f

View File

@ -72,6 +72,15 @@ protected:
float data[4];
};
class VertexRef
{
public:
VertexRef() : vertex(0), texture(0), normal(0) {}
int vertex;
int texture;
int normal;
};
/* methods */
void clear();
void processInputLine(const std::string & input);