aboutsummaryrefslogtreecommitdiffstats
path: root/include/Quest.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-08 17:01:40 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-08 17:01:40 -0400
commit60c7924097814686a2fb826b87fd7a3e1ff684de (patch)
tree3fd2c80bacf521960cbebcf48707c05c1bf0904e /include/Quest.h
parent51e40764ce718283c89422cd5e3d02d324c7d16c (diff)
Added quests
Diffstat (limited to 'include/Quest.h')
-rw-r--r--include/Quest.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/Quest.h b/include/Quest.h
new file mode 100644
index 0000000..169124e
--- /dev/null
+++ b/include/Quest.h
@@ -0,0 +1,30 @@
+#ifndef QUEST_H
+#define QUEST_H
+
+#include <cstdlib>
+#include <cstring>
+
+#define QUEST_LIMIT 5
+#define TOTAL_QUESTS 1
+
+class Quest {
+public:
+ char *title,*desc;
+ unsigned int xp;
+ Quest();
+ Quest(const char *t,const char *d,unsigned int x);
+ ~Quest();
+};
+
+class QuestHandler {
+private:
+ unsigned char ccnt;
+ Quest *current[QUEST_LIMIT];
+public:
+ QuestHandler();
+ int assign(const char *t);
+ int drop(const char *t);
+ int finish(const char *t);
+};
+
+#endif // QUEST_H