diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-02 08:47:11 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-02 08:47:11 -0400 |
commit | a277430f0ddde9ea2583f4b0c44fcafe8a2528bf (patch) | |
tree | 32a4bf8f1b6a32e237a9c486555f8215a2213ca9 /include/Quest.h | |
parent | aa73352387af9efc77495ebdac6d19fb276dd75a (diff) |
added inventories
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);
};
|