Rework README.ruleset_civ2civ3 defense bonus description.
[freeciv.git] / server / spacerace.h
blob2e0261258de06751e27d86be6aaa235987179486
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)
6 any later version.
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
16 #include "fc_types.h"
17 #include "packets.h"
19 struct player_spaceship;
20 struct conn_list;
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 */