| MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 1 | // MorgenGrauen MUDlib |
| 2 | // | ||||
| 3 | // player/combat.h -- prototypes for player specific issues of combat | ||||
| 4 | // | ||||
| 5 | // $Id: comm.h,v 3.3 2000/02/09 15:56:25 Padreic Exp $ | ||||
| 6 | |||||
| 7 | #ifndef __PLAYER_COMBAT_H__ | ||||
| 8 | #define __PLAYER_COMBAT_H__ | ||||
| 9 | |||||
| 10 | public int QueryPlAttacked(object pl); | ||||
| 11 | |||||
| 12 | public int RegisterHelperNPC(object npc, int flags); | ||||
| 13 | public int UnregisterHelperNPC(object npc); | ||||
| 14 | |||||
| 15 | #endif // __PLAYER_COMBAT_H__ | ||||
| 16 | |||||