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

📄 npcshop.h

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

#if !defined(AFX_NPCSHOP_H__92EE4D73_A647_49A7_9F33_9168AA574529__INCLUDED_)
#define AFX_NPCSHOP_H__92EE4D73_A647_49A7_9F33_9168AA574529__INCLUDED_

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


#include "GameObjSet.h"
#include "ItemType.h"
#include "Myheap.h"

typedef	IGameObjSet<CItemTypeData>	IGoodsSet;
typedef	CGameObjSet<CItemTypeData>	CGoodsSet;

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

public:
	bool	Create(PROCESS_ID idProcess, CNpc* pOwner, OBJID idNpc);
	CItemTypeData*	QueryItemType(OBJID idType)			{ return m_setGoods->GetObj(idType); }
	bool	IsOpen();
	int		Rebate(int nPrice, OBJID idSyn, int nRankShow);

protected: // data
	IGoodsSet*		m_setGoods;

private: // ctrl
	CNpc*			m_pOwner;
	PROCESS_ID		m_idProcess;

	MYHEAP_DECLARATION(s_heap)
};

#endif // !defined(AFX_NPCSHOP_H__92EE4D73_A647_49A7_9F33_9168AA574529__INCLUDED_)

⌨️ 快捷键说明

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