bygfoot/src/stat.h

27 lines
401 B
C
Raw Normal View History

2005-04-29 21:48:02 +02:00
#ifndef STAT_H
#define STAT_H
#include "bygfoot.h"
2005-04-30 15:57:58 +02:00
#include "league_struct.h"
2005-04-29 21:48:02 +02:00
#include "stat_struct.h"
2005-05-02 16:39:30 +02:00
SeasonStat
stat_season_stat_new(gint season_number);
2005-04-30 15:57:58 +02:00
LeagueStat
stat_league_new(gint clid);
2005-04-29 21:48:02 +02:00
GArray*
stat_update_league_teams(const GArray *teams, gint compare_type);
void
stat_update_leagues(void);
void
stat_update_league_players(League *league);
2005-05-01 12:16:14 +02:00
void
stat_create_season_stat(void);
2005-04-29 21:48:02 +02:00
#endif