diff options
author | dastgir <dastgirpojee@rocketmail.com> | 2015-02-11 10:01:41 -0500 |
---|---|---|
committer | dastgir <dastgirpojee@rocketmail.com> | 2015-02-11 10:01:41 -0500 |
commit | 0bd4a0178cd5beb8bee955777afe32392d75afa9 (patch) | |
tree | bb3062df27d13ada5938e6003f3b8eb55e42dc3a /src/map/battleground.h | |
parent | 56c4c0d997f0776c606a9a9594772f86ea181b68 (diff) | |
download | hercules-0bd4a0178cd5beb8bee955777afe32392d75afa9.tar.gz hercules-0bd4a0178cd5beb8bee955777afe32392d75afa9.tar.bz2 hercules-0bd4a0178cd5beb8bee955777afe32392d75afa9.tar.xz hercules-0bd4a0178cd5beb8bee955777afe32392d75afa9.zip |
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); /* */ |