📄 chess.h
字号:
// Chess.h: interface for the CChess class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CHESS_H__2F018FA8_4BDF_4EB2_9E21_1F62DF4C9DB1__INCLUDED_)
#define AFX_CHESS_H__2F018FA8_4BDF_4EB2_9E21_1F62DF4C9DB1__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
const int resCount = 1000 ;
class CChess
{
public:
CChess();
virtual ~CChess();
int N;
char **Grid;
int *resOne;
int *res[resCount];
int DispNo;
int DispNoMax;
void go();
bool CChessCapture();
void CChessMalloc();
void CChessFree();
void Draw(CDC* pDC);
};
#endif // !defined(AFX_CHESS_H__2F018FA8_4BDF_4EB2_9E21_1F62DF4C9DB1__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -