questeventmonsterkill.h

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

H
28
字号
//--------------------------------------------------------------------------------// QuestEventMonsterKill.h//--------------------------------------------------------------------------------#ifndef __QUEST_EVENT_MONSTER_KILL_H__#define __QUEST_EVENT_MONSTER_KILL_H__#include "Types.h"#include "Exception.h"#include "QuestEvent.h"#include "QuestUtil.h"#include "MonsterSelector.h"//--------------------------------------------------------------------------------// QuestEventMonsterKill//--------------------------------------------------------------------------------class QuestEventMonsterKill : public QuestEvent, public MonsterSelector {public :	QuestEventMonsterKill(MonsterType_t monsterType, SpriteType_t spriteType)	throw (Error)	: MonsterSelector(monsterType, spriteType, 1)	{	}	virtual QuestEvent::QuestEventType	getQuestEventType() const { return QuestEvent::QUEST_EVENT_MONSTER_KILL; }};#endif

⌨️ 快捷键说明

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