aboutsummaryrefslogtreecommitdiffstats
path: root/include/Quest.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-30 08:51:10 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-30 08:51:10 -0400
commit8deee144293102d4498424c38161d13c877250b2 (patch)
treee55cd9352fdd8534425b469ff428b3ca23d2729d /include/Quest.h
parentb3e21d31304efd793c58e904765bf298da6c5c20 (diff)
quest stuff
Diffstat (limited to 'include/Quest.h')
-rw-r--r--include/Quest.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/include/Quest.h b/include/Quest.h
index c73bf79..076b800 100644
--- a/include/Quest.h
+++ b/include/Quest.h
@@ -1,26 +1,23 @@
#ifndef QUEST_H
#define QUEST_H
-#include <common.h>
+#include <vector>
+#include <cstdlib>
#include <cstring>
-#define QUEST_LIMIT 5
#define TOTAL_QUESTS 1
class Quest {
public:
char *title,*desc;
- unsigned int xp;
- Quest(const char *t,const char *d,unsigned int x);
+ unsigned int reward;
+ Quest(const char *t,const char *d,unsigned int r);
~Quest();
};
class QuestHandler {
-private:
- unsigned char ccnt;
- const Quest *current[QUEST_LIMIT];
public:
- QuestHandler();
+ std::vector<const Quest *>current;
int assign(const char *t);
int drop(const char *t);
int finish(const char *t);