summaryrefslogtreecommitdiff
path: root/MapTool/t3d/model.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--MapTool/t3d/model.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/MapTool/t3d/model.h b/MapTool/t3d/model.h
new file mode 100644
index 0000000..a6535af
--- /dev/null
+++ b/MapTool/t3d/model.h
@@ -0,0 +1,16 @@
+#ifndef T3DMODEL_H
+#define T3DMODEL_H
+
+#include <QtCore/QList>
+#include "mesh.h"
+
+class T3DModel {
+public:
+ T3DModel();
+ ~T3DModel();
+
+ QList<T3DMesh *> meshes;
+
+};
+
+#endif // T3DMODEL_H