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

📄 npctask.h

📁 网络游戏魔域的服务端与客户端完整源代码 包括详细的说明文档与开发日志
💻 H
字号:
// NpcTask.h: interface for the CNpcTask class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_NPCTASK_H__D5ED3EB3_3301_4E3A_94B2_4730EE67D4BF__INCLUDED_)
#define AFX_NPCTASK_H__D5ED3EB3_3301_4E3A_94B2_4730EE67D4BF__INCLUDED_

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

#include "MapGroup.h"
#include "Npc.h"
#include "Myheap.h"

class CNpcTask  
{
protected:
	CNpcTask();
	virtual ~CNpcTask();
public:
	static CNpcTask* CreateNew()			{ return new CNpcTask; }
	ULONG	Release()						{ delete this; return 0; }

public:
	void	OnTimer(DWORD tCurr);
	bool	Create(PROCESS_ID idProcess, CNpc* pOwner, INpcData* pData);
	bool	ActivateTask		(CUser* pUser);

protected:
	bool		m_bActiveTime;
	ITaskSet*	m_setTask;
	CNpc*		m_pOwner;

protected: // ctrl
	PROCESS_ID	m_idProcess;

	MYHEAP_DECLARATION(s_heap)
};


#endif // !defined(AFX_NPCTASK_H__D5ED3EB3_3301_4E3A_94B2_4730EE67D4BF__INCLUDED_)

⌨️ 快捷键说明

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