coeng

view src/co_mesh.h @ 8:8cce82794f90

seems to work nicely
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 15 Feb 2015 05:14:20 +0200
parents
children
line source
1 #ifndef CO_MESH_H_
2 #define CO_MESH_H_
4 #include "comp.h"
5 #include "mesh.h"
6 #include "gobj.h"
8 class CoMesh : public Component {
9 public:
10 Mesh *mesh;
12 CoMesh();
13 ~CoMesh();
15 void draw() const;
16 };
18 CoMesh *gobj_co_mesh(const GObject *obj, bool nofail = true);
20 #endif // CO_MESH_H_