pad.h
上传用户:szsg028
上传日期:2022-08-01
资源大小:12k
文件大小:0k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef PAD_H
  2. #define PAD_H
  3. #include "court.h"
  4. class pad : public entity2D
  5. {
  6. public:
  7. pad();
  8. ~pad();
  9. void draw(HDC hDC);
  10. void move(float dt);
  11. void movingUp();
  12. void movingDown();
  13. void movingNone();
  14. void setVelocidad(float valor);
  15. void setCancha(court* cancha);
  16. void centrarEnCancha();
  17. private:
  18. float m_fVelocidad;
  19. court* m_Cancha;
  20. HBRUSH m_brushBlanco;
  21. HPEN m_penBlanco;
  22. bool m_bMovingUp;
  23. bool m_bMovingDown;
  24. };
  25. #endif
  26.