From e39254e1157c557232ee521b25d2ba5a60fa7578 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 8 Sep 2015 18:23:50 -0400 Subject: started official documentation --- doc/Quest.htm | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 doc/Quest.htm diff --git a/doc/Quest.htm b/doc/Quest.htm new file mode 100644 index 0000000..bc68644 --- /dev/null +++ b/doc/Quest.htm @@ -0,0 +1,56 @@ + + + + Quest + + + +

Quest

+
+

Description

+

Quest.h provides quest functionality, including the master list of quests and methods for the player to access them.

+
+

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[];
+public:
+ QuestHandler();
+ int assign(const char *t);
+ int drop(const char *t);
+ int finish(const char *t);
+
+