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

GDI/图象编程

开发平台:

Visual C++

  1. #include <windows.h>
  2. #include <mmsystem.h>
  3. #include <string>
  4. #include "entity2D.h"
  5. #include "ball.h"
  6. #include "pad.h"
  7. #include "court.h"
  8. using namespace std;
  9. class pong
  10. {
  11. public:
  12. pong(HINSTANCE hInstance);
  13. ~pong();
  14. bool iniciar();
  15. bool bucle();
  16. bool finalizar();
  17. private:
  18. HINSTANCE mHInstance;
  19. };