MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | // 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 | |
| 24 | varargs int GiveQuest(string questname, string message); |
| 25 | int QueryQuest(string questname); |
| 26 | |
| 27 | #endif // __PLAYER_QUESTS_H_PROTO__ |
| 28 | |
| 29 | #endif // NEED_PROTOYPES |