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__SPACERACE_H
14 #define FC__SPACERACE_H
19 struct player_spaceship
;
22 void spaceship_calc_derived(struct player_spaceship
*ship
);
23 void send_spaceship_info(struct player
*src
, struct conn_list
*dest
);
24 void spaceship_lost(struct player
*pplayer
);
25 struct player
*check_spaceship_arrival(void);
27 void handle_spaceship_launch(struct player
*pplayer
);
28 void handle_spaceship_place(struct player
*pplayer
,
29 enum spaceship_place_type type
, int num
);
31 #endif /* FC__SPACERACE_H */