pong.h
资源名称:pong.rar [点击查看]
上传用户:szsg028
上传日期:2022-08-01
资源大小:12k
文件大小:0k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- #include <windows.h>
- #include <mmsystem.h>
- #include <string>
- #include "entity2D.h"
- #include "ball.h"
- #include "pad.h"
- #include "court.h"
- using namespace std;
- class pong
- {
- public:
- pong(HINSTANCE hInstance);
- ~pong();
- bool iniciar();
- bool bucle();
- bool finalizar();
- private:
- HINSTANCE mHInstance;
- };