diff options
author | shennetsind <shennetsind@users.noreply.github.com> | 2015-03-10 16:14:21 -0300 |
---|---|---|
committer | shennetsind <shennetsind@users.noreply.github.com> | 2015-03-10 16:14:21 -0300 |
commit | c091b38e4400560ca0644afef9f08e4f9d6835b0 (patch) | |
tree | bd4ab3aeb652db6dd6283081e55138ab68e01fd7 /src/map/battleground.h | |
parent | 308677fb86dc98ed9c0adc18dea396c1cd5f6ff6 (diff) | |
parent | 0bd4a0178cd5beb8bee955777afe32392d75afa9 (diff) | |
download | hercules-c091b38e4400560ca0644afef9f08e4f9d6835b0.tar.gz hercules-c091b38e4400560ca0644afef9f08e4f9d6835b0.tar.bz2 hercules-c091b38e4400560ca0644afef9f08e4f9d6835b0.tar.xz hercules-c091b38e4400560ca0644afef9f08e4f9d6835b0.zip |
Merge pull request #461 from dastgir/bg_HPM
Battleground Data to HPM Struct
Diffstat (limited to 'src/map/battleground.h')
-rw-r--r-- | src/map/battleground.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/battleground.h b/src/map/battleground.h index 9878d6be0..87d56516a 100644 --- a/src/map/battleground.h +++ b/src/map/battleground.h @@ -48,6 +48,9 @@ struct battleground_data { // Logout Event char logout_event[EVENT_NAME_LENGTH]; char die_event[EVENT_NAME_LENGTH]; + /* HPM Custom Struct */ + struct HPluginData **hdata; + unsigned int hdatac; }; struct bg_arena { @@ -112,6 +115,7 @@ struct battleground_interface { int (*send_xy_timer_sub) (DBKey key, DBData *data, va_list ap); int (*send_xy_timer) (int tid, int64 tick, int id, intptr_t data); int (*afk_timer) (int tid, int64 tick, int id, intptr_t data); + int (*team_db_final) (DBKey key, DBData *data, va_list ap); /* */ enum bg_queue_types (*str2teamtype) (const char *str); /* */ |