diff options
author | Susu <bruant.bastien@gmail.com> | 2013-07-29 15:16:48 +0200 |
---|---|---|
committer | Susu <bruant.bastien@gmail.com> | 2013-07-29 15:16:48 +0200 |
commit | 5a22b0445416dbf7d0a0ddd95d31c1f068e704b3 (patch) | |
tree | 00ac75b9f22e4602eac87b9203b8faa141c86d65 /src/map/duel.h | |
parent | 9ac2cf7bc508248450ddd9f3eaca32cb6fe715a4 (diff) | |
download | hercules-5a22b0445416dbf7d0a0ddd95d31c1f068e704b3.tar.gz hercules-5a22b0445416dbf7d0a0ddd95d31c1f068e704b3.tar.bz2 hercules-5a22b0445416dbf7d0a0ddd95d31c1f068e704b3.tar.xz hercules-5a22b0445416dbf7d0a0ddd95d31c1f068e704b3.zip |
Added iDuel interface (duel.c)
Diffstat (limited to 'src/map/duel.h')
-rw-r--r-- | src/map/duel.h | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/src/map/duel.h b/src/map/duel.h index 04d8e4e84..ec9c4bf83 100644 --- a/src/map/duel.h +++ b/src/map/duel.h @@ -1,6 +1,5 @@ // Copyright (c) Athena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder - #ifndef _DUEL_H_ #define _DUEL_H_ @@ -11,19 +10,36 @@ struct duel { }; #define MAX_DUEL 1024 -extern struct duel duel_list[MAX_DUEL]; -extern int duel_count; - -//Duel functions // [LuzZza] -int duel_create(struct map_session_data* sd, const unsigned int maxpl); -void duel_invite(const unsigned int did, struct map_session_data* sd, struct map_session_data* target_sd); -void duel_accept(const unsigned int did, struct map_session_data* sd); -void duel_reject(const unsigned int did, struct map_session_data* sd); -void duel_leave(const unsigned int did, struct map_session_data* sd); -void duel_showinfo(const unsigned int did, struct map_session_data* sd); -int duel_checktime(struct map_session_data* sd); - -void do_init_duel(void); -void do_final_duel(void); + + + +/*===================================== +* Interface : duel.h +* Generated by HerculesInterfaceMaker +* created by Susu +*-------------------------------------*/ +struct duel_interface { + + /* vars */ + struct duel duel_list[MAX_DUEL]; + int duel_count; + + /* funcs */ + //Duel functions // [LuzZza] + int (*create) (struct map_session_data* sd, const unsigned int maxpl); + void (*invite) (const unsigned int did, struct map_session_data* sd, struct map_session_data* target_sd); + void (*accept) (const unsigned int did, struct map_session_data* sd); + void (*reject) (const unsigned int did, struct map_session_data* sd); + void (*leave) (const unsigned int did, struct map_session_data* sd); + void (*showinfo) (const unsigned int did, struct map_session_data* sd); + int (*checktime) (struct map_session_data* sd); + + void (*do_init_duel) (void); + void (*do_final_duel) (void); +} iDuel_s; + +struct duel_interface *iDuel; + +void duel_defaults(void); #endif /* _DUEL_H_ */ |