blob: 90bd808b11abea079d59fd1795af0cb0087ed1b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef QUEST_H
#define QUEST_H
#include <common.h>
#include <cstring>
#define QUEST_LIMIT 5
#define TOTAL_QUESTS 1
class Quest {
public:
char *title,*desc;
unsigned int xp;
Quest(const char *t,const char *d,unsigned int x);
~Quest();
};
class QuestHandler {
private:
unsigned char ccnt;
const Quest *current[QUEST_LIMIT];
public:
QuestHandler();
int assign(const char *t);
int drop(const char *t);
int finish(const char *t);
};
#endif // QUEST_H
|