1 /**********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 ***********************************************************************/
13 #ifndef FC__DIPLOMATS_H
14 #define FC__DIPLOMATS_H
18 void diplomat_embassy(struct player
*pplayer
, struct unit
*pdiplomat
,
20 void diplomat_investigate(struct player
*pplayer
, struct unit
*pdiplomat
,
22 void spy_send_sabotage_list(struct connection
*pc
, struct unit
*pdiplomat
,
24 void spy_poison(struct player
*pplayer
, struct unit
*pdiplomat
,
26 void spy_sabotage_unit(struct player
*pplayer
, struct unit
*pdiplomat
,
27 struct unit
*pvictim
);
28 void diplomat_bribe(struct player
*pplayer
, struct unit
*pdiplomat
,
29 struct unit
*pvictim
);
30 void diplomat_get_tech(struct player
*pplayer
, struct unit
*pdiplomat
,
31 struct city
*pcity
, int technology
);
32 void diplomat_incite(struct player
*pplayer
, struct unit
*pdiplomat
,
34 void diplomat_sabotage(struct player
*pplayer
, struct unit
*pdiplomat
,
35 struct city
*pcity
, Impr_type_id improvement
);
37 int count_diplomats_on_tile(struct tile
*ptile
);
39 #endif /* FC__DIPLOMATS_H */