eluosi.h
资源名称:eluosi.zip [点击查看]
上传用户:zhengjing
上传日期:2022-08-08
资源大小:5708k
文件大小:1k
源码类别:
游戏
开发平台:
Visual C++
- #ifndef _eluosi_h
- #define _eluosi_h
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class Celuosi
- {
- public:
- void end();
- void DrawNext(CDC*pDC);
- int score;
- void linedelete();
- void moveright();
- void moveleft();
- void change();
- bool startflags;
- void Fall();
- void GetBlock();
- void move(int dir);
- void Start();
- CPoint m_PosLeft; //方块左上角位置
- Celuosi();
- void DrawCover(CDC*pDC); //画封面
- void DrawScore(CDC*pDC);//画分数
- private:
- CBitmap BitCover;
- CBitmap BitBlock;
- int now[4][4];
- int will[4][4];
- int block[20][12];
- };
- #endif