blob: ea1440151b08ccea68cbbcab223b0ca0304f2ac6 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// 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
21static void _set_weight(int weight);
22static mapping _set_extern_attributes_modifier(mapping xmod);
23static mapping _set_extern_health_modifier(mapping xmod);
24
25#endif // __THING_RESTRICTIONS_H_PROTO__
26
27#endif // NEED_PROTOYPES