74e17ba352904fe71681f35ae8df7d81acb66c28
[supertux.git] / src / player.h
1 //
2 // Interface: tux
3 //
4 // Description: 
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2003
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 typedef struct upgrade_type
14   {
15     int alive;
16     int kind;
17     int height;
18     int x;
19     int y;
20     int xm;
21     int ym;
22   }
23 upgrade_type;
24
25 typedef struct bullet_type
26   {
27     int alive;
28     int x;
29     int y;
30     int xm;
31     int ym;
32   }
33 bullet_type;
34