renamed from enemy.h to badguy.h
authorTobias Gläßer <tobi.web@gmx.de>
Sat, 27 Dec 2003 12:35:59 +0000 (12:35 +0000)
committerTobias Gläßer <tobi.web@gmx.de>
Sat, 27 Dec 2003 12:35:59 +0000 (12:35 +0000)
SVN-Revision: 51

src/badguy.h [new file with mode: 0644]

diff --git a/src/badguy.h b/src/badguy.h
new file mode 100644 (file)
index 0000000..2cf9bb4
--- /dev/null
@@ -0,0 +1,30 @@
+//
+// C++ Interface: enemy
+//
+// Description:
+//
+//
+// Author: Tobias Glaesser <tobi.web@gmx.de> (C) 2003
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+
+/* Types: */
+
+typedef struct bad_guy_type
+  {
+    int alive;
+    int mode;
+    int dying;
+    int timer;
+    int kind;
+    int seen;
+    int dir;
+    int x;
+    int y;
+    int xm;
+    int ym;
+  }
+bad_guy_type;