2010-08-08 10:06:34 +02:00
|
|
|
#ifndef H_KRNL_SPY
|
|
|
|
#define H_KRNL_SPY
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
struct unit;
|
|
|
|
struct region;
|
|
|
|
struct strlist;
|
2016-11-22 12:32:28 +01:00
|
|
|
struct order;
|
2017-03-01 14:59:20 +01:00
|
|
|
struct faction;
|
2018-08-01 10:04:12 +02:00
|
|
|
struct ship;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
2017-03-01 14:59:20 +01:00
|
|
|
int setstealth_cmd(struct unit *u, struct order *ord);
|
|
|
|
int spy_cmd(struct unit *u, struct order *ord);
|
|
|
|
int sabotage_cmd(struct unit *u, struct order *ord);
|
|
|
|
void spy_message(int spy, const struct unit *u,
|
2015-01-30 20:37:14 +01:00
|
|
|
const struct unit *target);
|
2017-03-01 14:59:20 +01:00
|
|
|
void set_factionstealth(struct unit * u, struct faction * f);
|
2018-08-01 10:04:12 +02:00
|
|
|
void sink_ship(struct ship * sh);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|