server/src/spy.h

26 lines
586 B
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
#ifndef H_KRNL_SPY
#define H_KRNL_SPY
#ifdef __cplusplus
extern "C" {
#endif
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;
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,
const struct unit *target);
2017-03-01 14:59:20 +01:00
void set_factionstealth(struct unit * u, struct faction * f);
void sink_ship(struct ship * sh);
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif