?? 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_)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -