diff options
Diffstat (limited to 'include/Quest.h')
-rw-r--r-- | include/Quest.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/Quest.h b/include/Quest.h index c4b8780..11d04a6 100644 --- a/include/Quest.h +++ b/include/Quest.h @@ -5,13 +5,15 @@ #include <cstdlib>
#include <cstring>
+#include <inventory.h>
+
#define TOTAL_QUESTS 1
class Quest {
public:
char *title,*desc;
- unsigned int reward;
- Quest(const char *t,const char *d,unsigned int r);
+ struct item_t reward;
+ Quest(const char *t,const char *d,struct item_t r);
~Quest();
};
@@ -20,7 +22,7 @@ public: std::vector<const Quest *>current;
int assign(const char *t);
int drop(const char *t);
- int finish(const char *t);
+ int finish(const char *t,void *completer);
bool hasQuest(const char *t);
};
|