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

📄 ridemotorcycleslotinfo.h

📁 天之炼狱1服务器端源文件游戏服务端不完整
💻 H
字号:
//////////////////////////////////////////////////////////////////////////////// Filename    : RideMotorcycleSlotInfo.h// Written By  : elca// Description ://////////////////////////////////////////////////////////////////////////////#ifndef __RIDE_MOTORCYCLE_SLOT_INFO_H__#define __RIDE_MOTORCYCLE_SLOT_INFO_H__#include "Types.h"#include "Exception.h"#include "SocketInputStream.h"#include "SocketOutputStream.h"#include "PCItemInfo.h"//////////////////////////////////////////////////////////////////////////////// RideMotorcycle 沥焊甫 淬绊 乐绰 按眉./////////////////////////////////////////////////////////////////////////////class RideMotorcycleSlotInfo : public PCItemInfo {public:	void read (SocketInputStream & iStream) throw (ProtocolException, Error);	void write (SocketOutputStream & oStream) const throw (ProtocolException, Error);	uint getSize () throw ()	{ 		return PCItemInfo::getSize() + szCoordInven*2;	}	static uint getMaxSize () throw ()	{ 		return PCItemInfo::getMaxSize() + szCoordInven*2;	}	string toString () const throw ();public:	void setInvenX(CoordInven_t InvenX) throw() { m_InvenX = InvenX; }	CoordInven_t getInvenX() const throw() { return m_InvenX; }	void setInvenY(CoordInven_t InvenY) throw() { m_InvenY = InvenY; }	CoordInven_t getInvenY() const throw() { return m_InvenY; }private:	CoordInven_t m_InvenX;	CoordInven_t m_InvenY;};#endif

⌨️ 快捷键说明

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