~ubuntu-branches/ubuntu/raring/powermanga/raring

« back to all changes in this revision

Viewing changes to src/satellite_protections.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Gonéri Le Bouder, Cyril Brulebois, Barry deFreese
  • Date: 2008-03-19 21:32:41 UTC
  • mfrom: (1.2.4 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080319213241-sn6w3z75uppm22eq
Tags: 0.90-dfsg-1
[ Gonéri Le Bouder ]
* add desktop file, thanks Adrien Cunin (Closes: #402168)
 - powermanga.xpm moved in /usr/share/pixmaps
* call dh_desktop to run update-desktop-database

[ Cyril Brulebois ]
* Added XS-Vcs-Svn and XS-Vcs-Browser fields in the control file.

[ Barry deFreese ]
* Bump debhelper build-dep version to match compat
* Fix substvar source:Version
* Make distclean not ignore errors
* Add watch file
* Add Homepage field in control
* Remove XS- from VCS fields in control
* New Upstream Release (Closes: #447415)
  + Should now be dfsg free
  + Adds joystick support (Closes: #442322)
  + STILL NOT SURE ABOUT tlk.fnt
* Revert patches except fixing scoredir path and copyright for manpage
* Remove deprecated Encoding tag from desktop file
* Remove file extension from icon tag in desktop file
* Replace evil 'pwd' with $(CURDIR)
* Removing config.log config.status in clean target
* Convert copyright to UTF-8.
* Remove order/ dir from upstream tarball.
* Remove empty dirs from powermanga package.
* Bump Standards Version to 3.7.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** 
 
2
 * @file satellite_protections.h
 
3
 * @brief handle orbital satellite protections gravitate around the 
 
4
 *        player's spaceship and protect it from hostiles shots
 
5
 *        and enemies
 
6
 * @created 2006-11-10 
 
7
 * @date 2007-08-22
 
8
 * @author Jean-Michel Martin de Santero
 
9
 * @author Bruno Ethvignot
 
10
 */
 
11
/* 
 
12
 * copyright (c) 1998-2007 TLK Games all rights reserved
 
13
 * $Id: satellite_protections.h,v 1.6 2007/08/24 07:55:17 gurumeditation Exp $
 
14
 *
 
15
 * Powermanga is free software; you can redistribute it and/or modify
 
16
 * it under the terms of the GNU General Public License as published by
 
17
 * the Free Software Foundation; either version 3 of the License, or
 
18
 * (at your option) any later version.
 
19
 *
 
20
 * Powermanga is distributed in the hope that it will be useful, but
 
21
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
23
 * GNU General Public License for more details.
 
24
 *
 
25
 * You should have received a copy of the GNU General Public License
 
26
 * along with this program; if not, write to the Free Software
 
27
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
28
 * MA  02110-1301, USA.
 
29
 */
 
30
#ifndef __SATELLITE_PROTECTION__
 
31
#define __SATELLITE_PROTECTION__
 
32
 
 
33
#ifdef __cplusplus
 
34
extern "C"
 
35
{
 
36
#endif
 
37
  bool satellites_once_init (void);
 
38
  void satellites_free (void);
 
39
  void satellites_init (void);
 
40
  void satellites_handle (void);
 
41
  void satellites_add (void);
 
42
  void satellite_add (void);
 
43
  void satellites_setup (void);
 
44
  bool satellites_enemy_collisions (enemy * foe, Sint32 num_of_fragments);
 
45
  bool satellites_shot_collisions (Sint32 x1, Sint32 y1,
 
46
                                   shot_struct * projectile);
 
47
#ifdef __cplusplus
 
48
}
 
49
#endif
 
50
#endif