summaryrefslogtreecommitdiff
path: root/MapTool/t3d/mesh.h
blob: 2b9ce8930727e94d73aa1db17654324784cdf45d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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