summaryrefslogtreecommitdiff
path: root/src/char/int_mercenary.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-07-01 18:32:57 +0200
committerGitHub <noreply@github.com>2018-07-01 18:32:57 +0200
commit56bed6dba78e3d65f6ff5aeec924b3ba2d06459d (patch)
tree9dea571701ae7879b79d663ad45948ddced6f58a /src/char/int_mercenary.h
parentb1a1da3ac1b4a6465afe7b773b5f19178cd98ad2 (diff)
parent596428fa49b09ea1a0e0f17670ee127472576f37 (diff)
downloadhercules-56bed6dba78e3d65f6ff5aeec924b3ba2d06459d.tar.gz
hercules-56bed6dba78e3d65f6ff5aeec924b3ba2d06459d.tar.bz2
hercules-56bed6dba78e3d65f6ff5aeec924b3ba2d06459d.tar.xz
hercules-56bed6dba78e3d65f6ff5aeec924b3ba2d06459d.zip
Merge pull request #2108 from MishimaHaruna/mapifcleanup
Mapif cleanup
Diffstat (limited to 'src/char/int_mercenary.h')
-rw-r--r--src/char/int_mercenary.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/char/int_mercenary.h b/src/char/int_mercenary.h
index 2b7c82dfa..6291bfcf6 100644
--- a/src/char/int_mercenary.h
+++ b/src/char/int_mercenary.h
@@ -22,6 +22,7 @@
#define CHAR_INT_MERCENARY_H
#include "common/hercules.h"
+#include "common/mmo.h"
struct mmo_charstatus;
@@ -35,6 +36,11 @@ struct inter_mercenary_interface {
int (*sql_init) (void);
void (*sql_final) (void);
int (*parse_frommap) (int fd);
+
+ bool (*create) (struct s_mercenary *merc);
+ bool (*save) (const struct s_mercenary *merc);
+ bool (*load) (int merc_id, int char_id, struct s_mercenary *merc);
+ bool (*delete) (int merc_id);
};
#ifdef HERCULES_CORE