aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-02-08 08:48:33 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-02-08 08:48:33 -0500
commit36ef7e42fb1b151c64d69d96df7e33a9f4c47b83 (patch)
treebe75b6478fffda7b3b85fb20078d86f902197b45 /include
parente88af920196476ffb5ae182e879f045692cd3ef4 (diff)
quests?
Diffstat (limited to 'include')
-rw-r--r--include/Quest.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/Quest.h b/include/Quest.h
index cc01d27..7ba77c8 100644
--- a/include/Quest.h
+++ b/include/Quest.h
@@ -24,17 +24,9 @@ typedef struct {
std::string title;
std::string desc;
struct item_t reward;
+ std::vector<std::string> need;
} Quest;
-/*class Quest {
-public:
- char *title;
- char *desc;
- struct item_t reward;
- Quest(const char *t,const char *d,struct item_t r);
- ~Quest();
-};*/
-
/**
* The Quest Handler class.
*