- declare Mesh.mface and Mesh.tface to be of proper type instead of void*

This commit is contained in:
Daniel Dunbar
2005-07-14 15:58:32 +00:00
parent d22d9ab3c8
commit 6fefc761cc

View File

@@ -42,6 +42,7 @@ struct Key;
struct Material;
struct MVert;
struct MEdge;
struct MFace;
struct MCol;
struct MSticky;
struct Mesh;
@@ -70,7 +71,9 @@ typedef struct Mesh {
struct Key *key;
struct Material **mat;
void *mface, *dface, *tface;
struct MFace *mface;
struct TFace *tface;
void *dface;
struct MVert *mvert;
struct MEdge *medge;
struct MDeformVert *dvert; /* __NLA */