From: Clyne Sullivan Date: Tue, 8 Sep 2015 22:23:50 +0000 (-0400) Subject: started official documentation X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=e39254e1157c557232ee521b25d2ba5a60fa7578;p=clyne%2Fgamedev.git started official documentation --- 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);
+
+