converted OggVorbisStream to use assman
[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         const AABox &get_aabox() const;
18 };
19
20 #endif  // OBJMESH_H_