From: Tobias Gläßer Date: Sat, 27 Dec 2003 12:35:59 +0000 (+0000) Subject: renamed from enemy.h to badguy.h X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=5644b05aa25b65ebe6ce85da7f3264f24f3c4ddb;p=supertux.git renamed from enemy.h to badguy.h SVN-Revision: 51 --- 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;