00001 00007 #ifndef _OPENGL_MILKSHAPEOBJECT_H_ 00008 #define _OPENGL_MILKSHAPEOBJECT_H_ 00009 00010 #include "../OpenGL/OpenGLObject.h" 00011 #include "../MilkShape.h" 00012 #include "../Log.h" 00013 00014 class MilkShapeObject : public OpenGLObject { 00015 public: 00016 MilkShapeObject(const char *path, const char *filename); 00017 virtual ~MilkShapeObject(); 00018 00019 private: 00020 int m_nNumVertices; 00021 Vertex *m_pVertices; 00022 int m_nNumindices; 00023 short *m_pIndices; 00024 }; 00025 00026 #endif