diff options
author | Haru <haru@dotalux.com> | 2014-02-24 10:21:27 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-03-05 22:35:02 +0100 |
commit | d25cc9b7dbc103cf1454db37159ffffeedaac149 (patch) | |
tree | 0e4af566382b946797aa9de21df70b9bdf9d88fa /src/map/mapreg.h | |
parent | 78bf8d26567a2054bd9ff5268f9f73cb07d82b98 (diff) | |
download | hercules-d25cc9b7dbc103cf1454db37159ffffeedaac149.tar.gz hercules-d25cc9b7dbc103cf1454db37159ffffeedaac149.tar.bz2 hercules-d25cc9b7dbc103cf1454db37159ffffeedaac149.tar.xz hercules-d25cc9b7dbc103cf1454db37159ffffeedaac149.zip |
Ref redesign, part 2
- Reorganized regs var/array DBMaps into a specific reg_db structure
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/mapreg.h')
-rw-r--r-- | src/map/mapreg.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/map/mapreg.h b/src/map/mapreg.h index 246f5b744..2aa2943a2 100644 --- a/src/map/mapreg.h +++ b/src/map/mapreg.h @@ -5,6 +5,7 @@ #ifndef _MAP_MAPREG_H_ #define _MAP_MAPREG_H_ +#include "script.h" // struct reg_db #include "../common/cbasetypes.h" #include "../common/db.h" @@ -20,9 +21,7 @@ struct mapreg_save { }; struct mapreg_interface { - DBMap *db; // int var_id -> struct mapreg_save - /* */ - DBMap *array_db; + struct reg_db regs; /* */ bool skip_insert; /* */ |