⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skill.h

📁 墨香最新私服
💻 H
字号:
// Skill.h: interface for the CSkill class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SKILL_H__2838DA69_6FB2_4A87_9AC3_248866756652__INCLUDED_)
#define AFX_SKILL_H__2838DA69_6FB2_4A87_9AC3_248866756652__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CSkill
{
protected:
	MUGONGBASE m_MugongBaseInfo;
	BOOL	m_bUse;
	char skillName[17];			// ½ºÅ³À̸§
								// ´É·ÂÄ¡???
public:
	CSkill();
	virtual ~CSkill();
	void SetMugongBase(MUGONGBASE * mugong);
	MUGONGBASE * GetMugongBase() { return &m_MugongBaseInfo; }
	BOOL IsUse(){ return m_bUse; }
	void SetUse(BOOL val){ m_bUse = val; }
	void SetName(char * name){ strcpy(skillName, name); }
	
};

#endif // !defined(AFX_SKILL_H__2838DA69_6FB2_4A87_9AC3_248866756652__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -