diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-09 08:44:41 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-09 08:44:41 -0500 |
commit | 1382f79d57060dc38f6c45fd4fc865e0e565f90b (patch) | |
tree | 19d57dfa61ce77dc38caae73c0db559e01cb18b3 /include | |
parent | 36ef7e42fb1b151c64d69d96df7e33a9f4c47b83 (diff) |
quest completion
Diffstat (limited to 'include')
-rw-r--r-- | include/Quest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Quest.h b/include/Quest.h index 7ba77c8..388b14d 100644 --- a/include/Quest.h +++ b/include/Quest.h @@ -55,13 +55,13 @@ public: * that gave the quest originally.
*/
- int finish(const char *t,void *completer);
+ int finish(std::string t);
/**
* Returns true if this handler is currently taking the quest.
*/
- bool hasQuest(const char *t);
+ bool hasQuest(std::string t);
};
#endif // QUEST_H
|