assimp
[laserbrain_demo] / src / objmesh.h
diff --git a/src/objmesh.h b/src/objmesh.h
new file mode 100644 (file)
index 0000000..811caf6
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef OBJMESH_H_
+#define OBJMESH_H_
+
+#include "object.h"
+#include "mesh.h"
+
+class ObjMesh : public Object {
+public:
+       Mesh *mesh;
+
+       ObjMesh();
+
+       ObjType get_type() const;
+
+       void draw() const;
+};
+
+#endif // OBJMESH_H_