prepare_data now only processes files based on modification time
[laserbrain_demo] / src / objmesh.h
1 #ifndef OBJMESH_H_
2 #define OBJMESH_H_
3
4 #include "object.h"
5 #include "mesh.h"
6
7 class ObjMesh : public Object {
8 public:
9         Mesh *mesh;
10
11         ObjMesh();
12
13         ObjType get_type() const;
14
15         void draw() const;
16 };
17
18 #endif  // OBJMESH_H_