mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-02-07 23:28:51 +01:00
18 lines
262 B
C
18 lines
262 B
C
#ifndef YOUTH_ACADEMY_H
|
|
#define YOUTH_ACADEMY_H
|
|
|
|
#include "bygfoot.h"
|
|
#include "youth_academy_struct.h"
|
|
|
|
YouthAcademy
|
|
youth_academy_new(Team *tm);
|
|
|
|
void
|
|
youth_academy_add_new_player(YouthAcademy *youth_academy);
|
|
|
|
void
|
|
youth_academy_update_weekly(void);
|
|
|
|
#endif
|
|
|