chess.h
来自「一个简单的华容道的算法;很适合初学者学习参考。」· C头文件 代码 · 共 25 行
H
25 行
// chess.h: interface for the Chess class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CHESS_H__E8CAE0E5_1438_4153_A957_74C2A545E70D__INCLUDED_)
#define AFX_CHESS_H__E8CAE0E5_1438_4153_A957_74C2A545E70D__INCLUDED_
#include "point.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Chess
{
public:
int chessType;
point chessPosition;
Chess();
Chess(point,int);
virtual ~Chess();
};
#endif // !defined(AFX_CHESS_H__E8CAE0E5_1438_4153_A957_74C2A545E70D__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?