blob: a870fc7f5a64254a0156d71a4678cb5a29ed9bec [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// player/quests.h -- player quest handling
4//
5// $Id: quest.h,v 3.2 2000/02/09 15:56:25 Padreic Exp $
6
7#ifndef __PLAYER_QUESTS_H__
8#define __PLAYER_QUESTS_H__
9
10// properties
11
12#define P_QUESTS "quests"
13#define P_QP "questpoints"
14
15#endif // __PLAYER_QUESTS_H__
16
17#ifdef NEED_PROTOTYPES
18
19#ifndef __PLAYER_QUESTS_H_PROTO__
20#define __PLAYER_QUESTS_H_PROTO__
21
22// prototypes
23
24varargs int GiveQuest(string questname, string message);
25int QueryQuest(string questname);
26
27#endif // __PLAYER_QUESTS_H_PROTO__
28
29#endif // NEED_PROTOYPES