📄 anotherquestrewardinfo.h
字号:
//////////////////////////////////////////////////////////////////////////////// Filename : AnotherQuestRewardInfo.h// Description ://////////////////////////////////////////////////////////////////////////////#ifndef __ANOTHER_QUEST_REWARD_INFO_H__#define __ANOTHER_QUEST_REWARD_INFO_H__#include "Types.h"#include "Exception.h"#include "Item.h"#include "RewardInfo.h"#include <list>class RewardClass;//////////////////////////////////////////////////////////////////////////////// class AnotherQuestRewardInfo;//////////////////////////////////////////////////////////////////////////////class AnotherQuestRewardInfo : public RewardInfo{public: AnotherQuestRewardInfo( RewardID_t rID, RewardClass_t rClass, QuestID_t qID ); virtual ~AnotherQuestRewardInfo();public: virtual QuestMessage canGiveReward(PlayerCreature* pPC) const throw(Error); // 静瘤 富 巴. virtual QuestMessage giveReward(PlayerCreature* pPC) const throw(Error); bool isAnotherQuest() const { return true; } QuestID_t getQuestID() const { return m_QuestID; } virtual string toString() const throw();private: QuestID_t m_QuestID;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -