projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a22cda
)
renamed from enemy.h to badguy.h
author
Tobias Gläßer
<tobi.web@gmx.de>
Sat, 27 Dec 2003 12:35:59 +0000
(12:35 +0000)
committer
Tobias 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]
patch
|
blob
diff --git a/src/badguy.h
b/src/badguy.h
new file mode 100644
(file)
index 0000000..
2cf9bb4
--- /dev/null
+++ b/
src/badguy.h
@@ -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;