📄 cell.h
字号:
// cell.h: interface for the Cell class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CELL_H__4954A29F_58A2_4E16_932F_75CDDCCC9B58__INCLUDED_)
#define AFX_CELL_H__4954A29F_58A2_4E16_932F_75CDDCCC9B58__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Cell
{
public:
Cell();
virtual ~Cell();
int data[4][4];
void SetType(int nNumber);
int col,row;
void Turn( Cell* data);
int nControl;
// BOOL CanTrun(int row,int col);
};
#endif // !defined(AFX_CELL_H__4954A29F_58A2_4E16_932F_75CDDCCC9B58__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -