MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | // MorgenGrauen MUDlib |
| 2 | // |
| 3 | // living/moving.h -- Props/Prototypen fuer living/moving.c |
| 4 | // |
| 5 | // $Id: moving.h 8892 2014-08-04 19:48:28Z Zesstra $ |
| 6 | |
| 7 | #ifndef __LIVING_MOVING_H__ |
| 8 | #define __LIVING_MOVING_H__ |
| 9 | |
| 10 | #define P_PURSUERS "pursuers" |
| 11 | |
| 12 | #endif // __LIVING_MOVING_H__ |
| 13 | |
| 14 | #ifdef NEED_PROTOTYPES |
| 15 | |
| 16 | #ifndef __LIVING_MOVING_H_PROTO__ |
| 17 | #define __LIVING_MOVING_H_PROTO__ |
| 18 | |
| 19 | public void AddPursuer(object ob); |
| 20 | public void RemovePursuer(object ob); |
| 21 | |
| 22 | public void TakeFollowers(); |
| 23 | |
| 24 | #ifdef __THING_MOVING_H_PROTO__ |
| 25 | // das darf nicht passieren, weil move in thing anders ist als hier. *seufz* |
| 26 | inconsistent_move_protoyp_error |
| 27 | #endif |
| 28 | public varargs int move( object|string dest, int methods, string direction, |
| 29 | string textout, string textin ); |
| 30 | public varargs int remove(int silent); |
| 31 | |
| 32 | // internal |
| 33 | public void _SetPursued(object ob); |
| 34 | public void _RemovePursued(object ob); |
| 35 | |
| 36 | |
| 37 | #endif // __LIVING_MOVING_H_PROTO__ |
| 38 | |
| 39 | #endif // NEED_PROTOTYPES |
| 40 | |