MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | // MorgenGrauen MUDlib |
| 2 | // |
| 3 | // thing/restrictions.h -- restrictions of the object (weight) |
| 4 | // |
| 5 | // $Id: restrictions.h,v 3.3 2000/08/15 12:29:20 Paracelsus Exp $ |
| 6 | |
| 7 | #ifndef __THING_RESTRICTIONS_H__ |
| 8 | #define __THING_RESTRICTIONS_H__ |
| 9 | |
| 10 | // properties |
| 11 | #define P_WEIGHT "weight" // weight of an object |
| 12 | #define P_TOTAL_WEIGHT "total_weight" // weight with all objects inside |
| 13 | |
| 14 | #endif // __THING_RESTRICTIONS_H__ |
| 15 | |
| 16 | #ifdef NEED_PROTOTYPES |
| 17 | |
| 18 | #ifndef __THING_RESTRICTIONS_H_PROTO__ |
| 19 | #define __THING_RESTRICTIONS_H_PROTO__ |
| 20 | |
| 21 | static void _set_weight(int weight); |
| 22 | static mapping _set_extern_attributes_modifier(mapping xmod); |
| 23 | static mapping _set_extern_health_modifier(mapping xmod); |
| 24 | |
| 25 | #endif // __THING_RESTRICTIONS_H_PROTO__ |
| 26 | |
| 27 | #endif // NEED_PROTOYPES |