From 3fde0e7edf310245e5658b767840e742c9341597 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 10 Sep 2015 11:30:41 -0400 Subject: yeah --- doc/Quest.htm | 128 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) (limited to 'doc') diff --git a/doc/Quest.htm b/doc/Quest.htm index 0f2f822..5492f16 100644 --- a/doc/Quest.htm +++ b/doc/Quest.htm @@ -1,64 +1,64 @@ - - - - Quest - - - -

Quest

-
-

Description

-

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

-
-

Macros

-
#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);
-
-