diff options
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index 73f8e694b..a9699efc2 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -496,6 +496,11 @@ struct iwall_data { bool shootable; }; +struct adjust_unit_duration { + int skill_id; + unsigned short modifier; +}; + struct map_data { char name[MAP_NAME_LENGTH]; uint16 index; // The map index used by the mapindex* functions. @@ -588,6 +593,9 @@ struct map_data { // Instance Variables int instance_id; int instance_src_map; + + struct adjust_unit_duration **units; + unsigned short unit_count; }; /// Stores information about a remote map (for multi-mapserver setups). |