aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-08 18:26:47 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-08 18:26:47 -0400
commita56f129b316f62668816a5e0b8f5d99770630140 (patch)
tree2a2308e99ebcb7f7de7510a834c8af18e4b76196 /doc
parente39254e1157c557232ee521b25d2ba5a60fa7578 (diff)
updated Quest.htm
Diffstat (limited to 'doc')
-rw-r--r--doc/Quest.htm10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/Quest.htm b/doc/Quest.htm
index bc68644..0f2f822 100644
--- a/doc/Quest.htm
+++ b/doc/Quest.htm
@@ -19,6 +19,14 @@
<h2>Description</h2>
<p>Quest.h provides quest functionality, including the master list of quests and methods for the player to access them.</p>
<br>
+ <h3>Macros</h3>
+ <div class="code">#define QUEST_LIMIT 5<br>
+ #define TOTAL_QUESTS 1
+ </div>
+ <ul>
+ <li><b>QUEST_LIMIT</b>: Total number of quests a QuestHandler can handle.</li>
+ <li><b>TOTAL_QUESTS</b>: Total number of quests in the game.</li>
+ </ul>
<h3>class Quest</h3>
<div class="code"><b>public:</b><br>
char *title,*desc;<br>
@@ -38,7 +46,7 @@
<h3>class QuestHandler</h3>
<div class="code"><b>private:</b><br>
unsigned char ccnt;<br>
- Quest *current[];<br>
+ Quest *current[QUEST_LIMIT];<br>
<b>public:</b><br>
QuestHandler();<br>
int assign(const char *t);<br>