diff options
author | momacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-10 21:27:05 +0000 |
---|---|---|
committer | momacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-10 21:27:05 +0000 |
commit | 363a6e4f4f3918cad1c607ed5ecf8cefb75f0423 (patch) | |
tree | 3980ffd54043a81f145c1719a91e6cf6e9fcc5a3 /src/map/duel.h | |
parent | 175ab2914e9fea4aa3cb7d831df1e43da91c2edd (diff) | |
download | hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.tar.gz hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.tar.bz2 hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.tar.xz hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.zip |
Voiding some functions.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16906 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/duel.h')
-rw-r--r-- | src/map/duel.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/map/duel.h b/src/map/duel.h index 674d0e12f..04d8e4e84 100644 --- a/src/map/duel.h +++ b/src/map/duel.h @@ -16,14 +16,14 @@ extern int duel_count; //Duel functions // [LuzZza] int duel_create(struct map_session_data* sd, const unsigned int maxpl); -int duel_invite(const unsigned int did, struct map_session_data* sd, struct map_session_data* target_sd); -int duel_accept(const unsigned int did, struct map_session_data* sd); -int duel_reject(const unsigned int did, struct map_session_data* sd); -int duel_leave(const unsigned int did, struct map_session_data* sd); -int duel_showinfo(const unsigned int did, struct map_session_data* sd); +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); -int do_init_duel(void); +void do_init_duel(void); void do_final_duel(void); #endif /* _DUEL_H_ */ |