diff options
Diffstat (limited to '')
-rw-r--r-- | MapTool/t3d/mesh.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/MapTool/t3d/mesh.h b/MapTool/t3d/mesh.h new file mode 100644 index 0000000..2b9ce89 --- /dev/null +++ b/MapTool/t3d/mesh.h @@ -0,0 +1,18 @@ +#ifndef T3DMESH_H +#define T3DMESH_H + +#include "common.h" +#include "material.h" +#include <QtCore/QVector> + +class T3DMesh { +public: + T3DMesh(); + + QVector<Triangle> triangles; + QVector<Quad> quads; + + T3DMaterial *material; +}; + +#endif // T3DMESH_H |