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

📄 gcmodifyinformation.h

📁 dk1游戏的原代码文件,完整.编译系统redhat7.3,mysql 3.23 ,luascript v4.0 support
💻 H
字号:
//////////////////////////////////////////////////////////////////////////////// Filename    : GCModifyInformation.h // Written By  : elca@ewestsoft.com// Description : //////////////////////////////////////////////////////////////////////////////#ifndef __GC_MODIFY_INFORMATION_H__#define __GC_MODIFY_INFORMATION_H__#include "Types.h"#include "Exception.h"#include "Packet.h"#include "PacketFactory.h"#include "ModifyInfo.h"//////////////////////////////////////////////////////////////////////////////// class GCModifyInformation;//////////////////////////////////////////////////////////////////////////////class GCModifyInformation : public ModifyInfo{public:	void execute(Player* pPlayer) throw(ProtocolException, Error);	PacketID_t getPacketID() const throw() { return PACKET_GC_MODIFY_INFORMATION; }	string getPacketName() const throw() { return "GCModifyInformation"; }};//////////////////////////////////////////////////////////////////////////////// class GCModifyInformationFactory;//////////////////////////////////////////////////////////////////////////////class GCModifyInformationFactory : public PacketFactory {public:	Packet* createPacket() throw() { return new GCModifyInformation(); }	string getPacketName() const throw() { return "GCModifyInformation"; }	PacketID_t getPacketID() const throw() { return Packet::PACKET_GC_MODIFY_INFORMATION; }	PacketSize_t getPacketMaxSize() const throw() { return ModifyInfo::getPacketMaxSize(); }};//////////////////////////////////////////////////////////////////////////////// class GCModifyInformationHandler;//////////////////////////////////////////////////////////////////////////////class GCModifyInformationHandler {public:	static void execute(GCModifyInformation* pGCModifyInformation, Player* pPlayer) throw(Error);};#endif

⌨️ 快捷键说明

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