3dsloader.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:0k
源码类别:

OpenGL

开发平台:

Windows_Unix

  1. #ifndef _CLoader3DS_H_
  2. #define _CLoader3DS_H_
  3. #include "Stdinc.h"
  4. #include "Texture.h"
  5. #include "Mesh.h"
  6. class CLoader3DS
  7. {
  8.     private:
  9.         CMesh*          m_pCurrentMesh;
  10.         CMaterial*      m_pCurrentMaterial;
  11.         CObject*        m_pCurrentObject;
  12.         Texture*        tm;
  13.         long EatChunk(char* buffer);
  14.     public:
  15.         bool Load( std::string filename, CObject* pObj );
  16.         CLoader3DS();
  17.         ~CLoader3DS();
  18. };
  19. #endif