From c38029fa3d4fd7488c2bd9236eec86aff4448314 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 17 Sep 2015 09:22:45 -0400 Subject: shit --- doc/Quest.htm | 64 ----------------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 doc/Quest.htm (limited to 'doc/Quest.htm') diff --git a/doc/Quest.htm b/doc/Quest.htm deleted file mode 100644 index 5492f16..0000000 --- a/doc/Quest.htm +++ /dev/null @@ -1,64 +0,0 @@ - - - - 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);
-
-