server/src/attributes/otherfaction.h

20 lines
396 B
C
Raw Normal View History

2019-09-13 21:35:44 +02:00
#pragma once
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
extern "C" {
#endif
struct unit;
struct faction;
struct attrib;
extern struct attrib_type at_otherfaction;
2010-08-08 10:06:34 +02:00
struct faction *get_otherfaction(const struct unit *u);
struct attrib *make_otherfaction(struct faction *f);
struct faction *visible_faction(const struct faction *f,
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