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

游戏引擎

开发平台:

Visual C++

  1. #pragma once
  2. #include "cbutton.h"
  3. class CbuttonPicture :
  4. public Cbutton
  5. {
  6. public:
  7. CbuttonPicture(hgeSprite *_spr,
  8. float _tex,
  9. float _tey,
  10. float _tew,
  11. float _teh,
  12. float _size );
  13. virtual ~CbuttonPicture(void);
  14. // 实现更新
  15. virtual bool Logic(float _x, float _y);
  16. virtual void Render(void);
  17. protected:
  18. hgeSprite *m_pSpr;
  19. hgeRect m_texRect;
  20. float m_fsize;
  21. };