diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-17 22:30:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-18 01:44:19 +0300 |
commit | 4537814684bc50d1154d9f54500c0602303ca862 (patch) | |
tree | 3307383febbe723af7fd37b45efbcb78387d301c /src/map/data/itemd.h | |
parent | cbc5fbb5c063bfb64c2086a0e965adc60669cbdf (diff) | |
download | evol-hercules-4537814684bc50d1154d9f54500c0602303ca862.tar.gz evol-hercules-4537814684bc50d1154d9f54500c0602303ca862.tar.bz2 evol-hercules-4537814684bc50d1154d9f54500c0602303ca862.tar.xz evol-hercules-4537814684bc50d1154d9f54500c0602303ca862.zip |
Add itemdb plugin structure.
Diffstat (limited to 'src/map/data/itemd.h')
-rw-r--r-- | src/map/data/itemd.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/map/data/itemd.h b/src/map/data/itemd.h new file mode 100644 index 0000000..611d6cd --- /dev/null +++ b/src/map/data/itemd.h @@ -0,0 +1,12 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_MAP_ITEMD +#define EVOL_MAP_ITEMD + +struct ItemdExt; + +struct ItemdExt *itemd_get(struct item_data *item); +struct ItemdExt *itemd_create(void); + +#endif // EVOL_MAP_MAPD |