tree.h

来自「圣剑二完整的游戏代码。附作者写的三篇文章。游戏的开发过程」· C头文件 代码 · 共 24 行

H
24
字号

//------------------------------------------------------------
// 树相关函数
// 创建于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 + =
减小字号Ctrl + -
显示快捷键?