effectrefiniumticket.h

来自「天之炼狱1服务器端源文件游戏服务端不完整」· C头文件 代码 · 共 50 行

H
50
字号
//////////////////////////////////////////////////////////////////////////////// Filename    : EffectRefiniumTicket.h// Written by  : crazydog// Description : //////////////////////////////////////////////////////////////////////////////#ifndef __EFFECT_REFINIUM_TICKET__#define __EFFECT_REFINIUM_TICKET__#include "Effect.h"//////////////////////////////////////////////////////////////////////////////// class EffectRefiniumTicket//////////////////////////////////////////////////////////////////////////////class EffectRefiniumTicket : public Effect {public:	EffectRefiniumTicket(Creature* pCreature) throw(Error);public:    EffectClass getEffectClass() const throw() { return EFFECT_CLASS_REFINIUM_TICKET; }	void affect() throw(Error){}	void unaffect(Creature* pCreature) throw(Error);	void unaffect() throw(Error);	void setExit( uint exit ) { m_Exit = exit; }	uint getExit() const { return m_Exit; }	ZoneID_t getPrevExitZoneID(){ return m_PrevExitZoneID; }	ZoneCoord_t getPrevExitX(){ return m_PrevExitX; }	ZoneCoord_t getPrevExitY(){ return m_PrevExitY; }	void setPrevExitZoneID( ZoneID_t PrevExitZoneID ) { m_PrevExitZoneID=PrevExitZoneID; }	void setPrevExitX( ZoneCoord_t PrevExitX ) { m_PrevExitX=PrevExitX; }	void setPrevExitY( ZoneCoord_t PrevExitY ) { m_PrevExitY=PrevExitY; }	string toString() const throw();private:	uint m_Exit;	ZoneID_t m_PrevExitZoneID;	ZoneCoord_t m_PrevExitX;	ZoneCoord_t m_PrevExitY;};#endif // __EFFECT_REFINIUM_TICKET__

⌨️ 快捷键说明

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