questeventmonsterkill.h
来自「dk1游戏的原代码文件,完整.编译系统redhat7.3,mysql 3.23 」· 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 + -
显示快捷键?