eventregeneration.h
来自「天之炼狱1服务器端源文件游戏服务端不完整」· C头文件 代码 · 共 35 行
H
35 行
//////////////////////////////////////////////////////////////////////////////// Filename : EventRegeneration.h// Written by : elca// Description : //////////////////////////////////////////////////////////////////////////////#ifndef __EVENTREGENERATION_H__#define __EVENTREGENERATION_H__#include "Event.h"//////////////////////////////////////////////////////////////////////////////// class EventRegeneration;//////////////////////////////////////////////////////////////////////////////class EventRegeneration : public Event {public: EventRegeneration(GamePlayer* pGamePlayer) throw(Error); virtual ~EventRegeneration() throw();public: virtual EventClass getEventClass() const throw() { return EVENT_CLASS_REGENERATION; } virtual bool isTemporary() const throw() { return false; } virtual bool isPermanent() const throw() { return true; } virtual void activate() throw(Error); virtual string toString() const throw() { return "Regeneration Event"; }};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?