aboutsummaryrefslogtreecommitdiffstats
path: root/include/Quest.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-02 08:47:11 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-02 08:47:11 -0400
commita277430f0ddde9ea2583f4b0c44fcafe8a2528bf (patch)
tree32a4bf8f1b6a32e237a9c486555f8215a2213ca9 /include/Quest.h
parentaa73352387af9efc77495ebdac6d19fb276dd75a (diff)
added inventories
Diffstat (limited to 'include/Quest.h')
-rw-r--r--include/Quest.h8
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);
};