Sprite.h
上传用户:jalin138
上传日期:2022-02-12
资源大小:5720k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #pragma once
  2. #include "Info.h"
  3. class CSprite
  4. {
  5. public:
  6. CSprite(int _itype,int _jtype,int _n);
  7. virtual ~CSprite(void);
  8. // 绘制线框
  9. void Render(float _size);
  10. public:
  11. int   m_nType;
  12. float m_fx;
  13. float m_fy;
  14. int   a;
  15. int   n;
  16. hgeSprite *m_pSpr;
  17. };