summaryrefslogtreecommitdiff
path: root/src/map/homunculus.h
diff options
context:
space:
mode:
authormalufett <malufett.eat.my.binaries@gmail.com>2015-08-02 04:54:11 +0800
committermalufett <malufett.eat.my.binaries@gmail.com>2015-08-02 04:54:11 +0800
commite900608cc45f33399b12f109548da515df82e723 (patch)
tree3669888c564fe0527650cccd92af744058290b4a /src/map/homunculus.h
parentcca4271c9350203bffa2feeb753708f434b71d41 (diff)
parentf780bc47486289acd70fee5dc4f34efca1440eaa (diff)
downloadhercules-e900608cc45f33399b12f109548da515df82e723.tar.gz
hercules-e900608cc45f33399b12f109548da515df82e723.tar.bz2
hercules-e900608cc45f33399b12f109548da515df82e723.tar.xz
hercules-e900608cc45f33399b12f109548da515df82e723.zip
Merge pull request #601 from 4144/hpmreduce
Reduce map server memory usage for 3 MB with loaded HPM
Diffstat (limited to 'src/map/homunculus.h')
-rw-r--r--src/map/homunculus.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/map/homunculus.h b/src/map/homunculus.h
index 32e48b1e9..95b613fff 100644
--- a/src/map/homunculus.h
+++ b/src/map/homunculus.h
@@ -99,12 +99,16 @@ enum homun_type {
HT_INVALID = -1, // Invalid Homunculus
};
-/* homunculus.c interface */
-struct homunculus_interface {
+struct homun_dbs {
unsigned int exptable[MAX_LEVEL];
struct view_data viewdb[MAX_HOMUNCULUS_CLASS];
struct s_homunculus_db db[MAX_HOMUNCULUS_CLASS];
struct homun_skill_tree_entry skill_tree[MAX_HOMUNCULUS_CLASS][MAX_SKILL_TREE];
+};
+
+/* homunculus.c interface */
+struct homunculus_interface {
+ struct homun_dbs *dbs;
/* */
void (*init) (bool minimal);
void (*final) (void);