blob: 9fa33833a5203dbadfa1e7302b74d4dfae74b507 (
plain) (
tree)
|
|
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef _DUEL_H_
#define _DUEL_H_
struct duel {
int members_count;
int invites_count;
int max_players_limit;
};
#define MAX_DUEL 1024
/*=====================================
* 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 iDuel_defaults(void);
#endif /* _DUEL_H_ */
|