From 49411238b04f3510d18617d1498622cf199c617d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 8 Dec 2015 08:35:21 -0500 Subject: documentation, dialog box borders --- doc/html/Quest_8h_source.html | 135 ------------------------------------------ 1 file changed, 135 deletions(-) delete mode 100644 doc/html/Quest_8h_source.html (limited to 'doc/html/Quest_8h_source.html') diff --git a/doc/html/Quest_8h_source.html b/doc/html/Quest_8h_source.html deleted file mode 100644 index 395f864..0000000 --- a/doc/html/Quest_8h_source.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - -gamedev: include/Quest.h Source File - - - - - - - - - - -
-
- - - - - - -
-
gamedev -
-
-
- - - - - - -
-
- - -
- -
- - -
-
-
-
Quest.h
-
-
-
1 #ifndef QUEST_H
-
2 #define QUEST_H
-
3 
-
4 #include <cstring>
-
5 
-
6 #include <common.h>
-
7 #include <inventory.h>
-
8 
-
9 #define DEBUG
-
10 
-
11 #define TOTAL_QUESTS 1
-
12 
-
13 class Quest {
-
14 public:
-
15  char *title,*desc;
-
16  struct item_t reward;
-
17  Quest(const char *t,const char *d,struct item_t r);
-
18  ~Quest();
-
19 };
-
20 
-
21 class QuestHandler {
-
22 public:
-
23  std::vector<const Quest *>current;
-
24  int assign(const char *t);
-
25  int drop(const char *t);
-
26  int finish(const char *t,void *completer);
-
27  bool hasQuest(const char *t);
-
28 };
-
29 
-
30 #include <entities.h>
-
31 
-
32 #endif // QUEST_H
-
Definition: Quest.h:13
-
Definition: inventory.h:58
-
Definition: Quest.h:21
-
- - - - -- cgit v1.2.3