effectkeepsweeper.h

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

H
37
字号
//////////////////////////////////////////////////////////////////////////////// Filename    : EffectKeepSweeper.h// Written by  : // Description : //////////////////////////////////////////////////////////////////////////////#ifndef __EFFECT_KEEP_SWEEPER__#define __EFFECT_KEEP_SWEEPER__#include "Effect.h"//////////////////////////////////////////////////////////////////////////////// class EffectKeepSweeper//////////////////////////////////////////////////////////////////////////////class EffectKeepSweeper : public Effect{public:	EffectKeepSweeper(Item* pItem) throw(Error);public:    EffectClass getEffectClass() const throw() { return EFFECT_CLASS_KEEP_SWEEPER; }	EffectClass getSendEffectClass() const throw() { return (EffectClass)(EFFECT_CLASS_KEEP_SWEEPER + m_Part); }	void unaffect() throw(Error);	string toString() const throw();public:	void   	setPart(int part) throw() { m_Part = part; }private:	ItemType_t	m_Part;	};#endif 

⌨️ 快捷键说明

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