From 5644b05aa25b65ebe6ce85da7f3264f24f3c4ddb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tobias=20Gl=C3=A4=C3=9Fer?= Date: Sat, 27 Dec 2003 12:35:59 +0000 Subject: [PATCH] renamed from enemy.h to badguy.h SVN-Revision: 51 --- src/badguy.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/badguy.h diff --git a/src/badguy.h b/src/badguy.h new file mode 100644 index 000000000..2cf9bb458 --- /dev/null +++ b/src/badguy.h @@ -0,0 +1,30 @@ +// +// C++ Interface: enemy +// +// Description: +// +// +// Author: Tobias Glaesser (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; -- 2.11.0