bygfoot/src/cup.h

41 lines
636 B
C
Raw Normal View History

2004-12-23 21:43:43 +01:00
#ifndef CUP_H
#define CUP_H
#include "bygfoot.h"
#include "cup_struct.h"
2004-12-23 21:43:43 +01:00
Cup
cup_new(void);
2004-12-23 21:43:43 +01:00
gint
cup_new_id(void);
2004-12-23 21:43:43 +01:00
CupChooseTeam
cup_choose_team_new(void);
2004-12-23 21:43:43 +01:00
CupRound
cup_round_new(void);
void
cup_load_choose_teams(Cup *cup);
void
cup_load_choose_team_user(Cup *cup);
void
cup_choose_team_abort(const Cup *cup, const CupChooseTeam *choose_team, gboolean user);
2004-12-23 21:43:43 +01:00
2005-01-09 21:21:22 +01:00
GPtrArray*
cup_get_team_pointers(const Cup *cup);
gint
cup_get_first_week_of_cup_round(const Cup *cup, gint cup_round);
gint
cup_get_matchdays_in_cup_round(const Cup *cup, gint cup_round);
gint
cup_round_get_number_of_teams(const Cup *cup, gint cup_round);
2004-12-23 21:43:43 +01:00
#endif