server/src/academy.h

17 lines
307 B
C
Raw Normal View History

2016-03-08 17:29:15 +01:00
#ifndef H_ACADEMY
#define H_ACADEMY
#include <skill.h>
#ifdef __cplusplus
extern "C" {
#endif
struct unit;
void academy_teaching_bonus(struct unit *u, skill_t sk, int academy);
2016-03-11 21:36:10 +01:00
bool academy_can_teach(struct unit *teacher, struct unit *student, skill_t sk);
2016-03-08 17:29:15 +01:00
#ifdef __cplusplus
}
#endif
#endif