2019-09-13 21:35:44 +02:00
|
|
|
#pragma once
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-11-09 13:55:09 +01:00
|
|
|
struct unit;
|
2015-01-30 20:37:14 +01:00
|
|
|
struct faction;
|
|
|
|
struct attrib;
|
|
|
|
extern struct attrib_type at_otherfaction;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
2017-03-08 20:15:41 +01:00
|
|
|
struct faction *get_otherfaction(const struct unit *u);
|
|
|
|
struct attrib *make_otherfaction(struct faction *f);
|
|
|
|
struct faction *visible_faction(const struct faction *f,
|
2015-01-30 20:37:14 +01:00
|
|
|
const struct unit *u);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2011-03-08 15:36:14 +01:00
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
#endif
|