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

📄 msgnpcinfoex.h

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

#if !defined(AFX_MSGNPCINFOEX_H__8CE4D354_B8B9_44BC_B2D2_D2776C160CEF__INCLUDED_)
#define AFX_MSGNPCINFOEX_H__8CE4D354_B8B9_44BC_B2D2_D2776C160CEF__INCLUDED_

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

#include "NetMsg.h"
#include "NetStringPacker.h"

class CMsgNpcInfoEX  : public CNetMsg   
{
public:
	CMsgNpcInfoEX();
	virtual ~CMsgNpcInfoEX();

public:	
	BOOL			Create		(char* pMsgBuf, DWORD dwSize);
	void			Process		(void* pInfo);

protected:
	typedef struct
	{
		USHORT		unMsgSize;
		USHORT		unMsgType;
		OBJID		id;						// lookface for statuary
		DWORD		dwMaxLife;				// the max life of npc
		DWORD		dwLife;					// the life of npc
		unsigned	short usCellX;			
		unsigned	short usCellY;
		USHORT		usLook;					// dir for statuary
		USHORT		usType;					// frame for statuary
		USHORT		usSort;					// pose for statuary
		char		cLength;				// 高矮
		char		cFat;					// 胖瘦
		char		szName[1];				// name
	}MSG_Info;
	MSG_Info*	m_pInfo;
private:
	CNetStringPacker	m_StrPacker;
};

#endif // !defined(AFX_MSGNPCINFOEX_H__8CE4D354_B8B9_44BC_B2D2_D2776C160CEF__INCLUDED_)

⌨️ 快捷键说明

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