📄 overall.h
字号:
// Overall.h: interface for the Overall class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_OVERALL_H__5AB8BE54_13D9_4705_A701_978D94B71083__INCLUDED_)
#define AFX_OVERALL_H__5AB8BE54_13D9_4705_A701_978D94B71083__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//棋盘所拥有的类
class Overall
{
public:
Overall();
virtual ~Overall();
int allqipan[18][18];//正规企盼的数据
int qipantemp[18][18];//试走的数据
int tempjustxy;//see .cpp blow
void cleartemp();
void clear();
int winchanglian(int x,int y);
int huosi(int x,int y);
int shuangsan(int x,int y);
int shuangsi(int x,int y);
};
#endif // !defined(AFX_OVERALL_H__5AB8BE54_13D9_4705_A701_978D94B71083__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -