blob: 11d04a684a7832d0880b60722d5e7dc3e9f030d8 (
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 <vector>
#include <cstdlib>
#include <cstring>
#include <inventory.h>
#define TOTAL_QUESTS 1
class Quest {
public:
char *title,*desc;
struct item_t reward;
Quest(const char *t,const char *d,struct item_t r);
~Quest();
};
class QuestHandler {
public:
std::vector<const Quest *>current;
int assign(const char *t);
int drop(const char *t);
int finish(const char *t,void *completer);
bool hasQuest(const char *t);
};
#endif // QUEST_H
|