diff options
author | Haru <haru@dotalux.com> | 2014-02-24 09:17:02 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-03-05 22:35:02 +0100 |
commit | 78bf8d26567a2054bd9ff5268f9f73cb07d82b98 (patch) | |
tree | 68e5deedd9525d05151840c6446460add55d799e /src/map/script.h | |
parent | d554d61417a6e7f48de96efcc69872e0b7b65da3 (diff) | |
download | hercules-78bf8d26567a2054bd9ff5268f9f73cb07d82b98.tar.gz hercules-78bf8d26567a2054bd9ff5268f9f73cb07d82b98.tar.bz2 hercules-78bf8d26567a2054bd9ff5268f9f73cb07d82b98.tar.xz hercules-78bf8d26567a2054bd9ff5268f9f73cb07d82b98.zip |
Ref redesign, part 1
- Moved string and numeric mapregs into the same DBMap (for consistency
with the other reg types.)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/map/script.h b/src/map/script.h index 7ab7f17c6..c0160fd49 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -407,17 +407,6 @@ struct script_state { unsigned int id; }; -/* TODO: HELLO DUCK THIS */ -struct script_reg { - int64 index; - int data; -}; -/* TODO: HELLO DUCK THIS */ -struct script_regstr { - int64 index; - char* data; -}; - struct script_function { bool (*func)(struct script_state *st); char *name; |