~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to common/combat.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2010-02-23 22:09:02 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100223220902-kiyrmr9i4152cka5
Tags: 2.2.0-1
[ Karl Goetz ]
* Remove civserver files in /etc/ggzd/ (Closes: 523772, 517787)
* Adding ${misc:Depends} to all binary packages (lintian warnings)

[ Clint Adams ]
* New upstream version.
  - Drop data_dsc_use_bindir.diff (binary pathnames have changed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 */
25
25
#define POWER_FACTOR    10
26
26
 
 
27
bool is_unit_reachable_by_unit(const struct unit *defender,
 
28
                               const struct unit *attacker);
27
29
bool can_player_attack_tile(const struct player *pplayer,
28
30
                            const struct tile *ptile);
29
31
bool can_unit_attack_unit_at_tile(const struct unit *punit,
43
45
                       const struct unit *defender);
44
46
 
45
47
bool unit_really_ignores_citywalls(const struct unit *punit);
46
 
bool unit_on_fortress(const struct unit *punit);
47
48
struct city *sdi_try_defend(const struct player *owner,
48
49
                               const struct tile *ptile);
49
50