FromIndexToName.h
上传用户:xhbjoy
上传日期:2014-10-07
资源大小:38068k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #pragma once
  2. class FromIndexToName
  3. {
  4. public:
  5. int index;
  6. char *meshname;
  7. CString meshnamestr;
  8. public:
  9. FromIndexToName(void);
  10. FromIndexToName(int index,char *meshname,CString meshnamestr);
  11. ~FromIndexToName(void);
  12. };