首页 > 代码库 > windows程序扫雷程序设计

windows程序扫雷程序设计

 具体资源见:http://download.csdn.net/detail/zhouyelihua/7604765


 在学习windows程序设计中,我们希望通过一个完整的程序来学习windows API这是本人在上杨力祥老师的课程是自己写的扫雷程序。

    下面是。cpp文件

#include <windows.h>
#include"resource.h"
#include<stdlib.h>

#pragma comment( lib,"winmm.lib")
//地雷的结构
class Mine{
	int x,y;
	int value;
	bool zeroCursor;
	bool dis_or_not;
	int  cur3;
public:
	bool getZerocursor();
	void setZerocursor(bool cur);
	void setDisOrNot(bool d);
	void setX(int xx);
	void setY(int yy);
	void setValue(int val);
	void dispaly();
	int getvalue() ;
	bool getdisval() ;
	int getcur3();
	void setcur3(int d);
};
int Mine::getcur3()
{
	return cur3;
}
void Mine::setcur3(int d)
{
cur3=d;
}
bool Mine::getZerocursor()
{
	return zeroCursor;
}
void Mine::setZerocursor(bool cur)
{
	zeroCursor=cur;
}
bool Mine::getdisval() 
{
	return (dis_or_not);
}
void Mine::setDisOrNot(bool d)
{
	dis_or_not=d;
}
void Mine::setX(int xx)
{
	x=xx;
}
void Mine::setY(int yy)
{
	y=yy;
}
void Mine::setValue(int val)
{
	value=http://www.mamicode.com/val;>
具体文件及见下载地址:

http://download.csdn.net/detail/zhouyelihua/7604765



http://download.csdn.net/detail/zhouyelihua/7604765