diff options
Diffstat (limited to 'src/libjin/graphics/je_mesh.h')
-rw-r--r-- | src/libjin/graphics/je_mesh.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/libjin/graphics/je_mesh.h b/src/libjin/graphics/je_mesh.h new file mode 100644 index 0000000..e0a38f8 --- /dev/null +++ b/src/libjin/graphics/je_mesh.h @@ -0,0 +1,28 @@ +#ifndef __JE_MESH_H__ +#define __JE_MESH_H__ + +#include "je_graphic.h" + +namespace JinEngine +{ + namespace Graphics + { + + /// + /// A 2D mesh. + /// + class Mesh + { + public: + void setGraphic(); + + + private: + const Graphic* mGraphic; + + }; + + } // namespace Graphics +} // namespace JinEngine + +#endif
\ No newline at end of file |