?? tree.h
字號:
//------------------------------------------------------------
// 樹相關函數
// 創建于2002年4月3日
//------------------------------------------------------------
#ifndef _TREE_H_
#define _TREE_H_
class CFindPath;
class CTree
{
friend class CFindPath;
private:
CTree(int f,int tile,CTree* father);
CTree* m_pFather;
int m_nTile; //地圖TILE值
int m_nH; //深度
virtual ~CTree();
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -