renamed from enemy.h to badguy.h
[supertux.git] / src / badguy.h
1 //
2 // C++ Interface: enemy
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
14 /* Types: */
15
16 typedef struct bad_guy_type
17   {
18     int alive;
19     int mode;
20     int dying;
21     int timer;
22     int kind;
23     int seen;
24     int dir;
25     int x;
26     int y;
27     int xm;
28     int ym;
29   }
30 bad_guy_type;