00001 00002 /* 00003 * $Id: aero.bomb.h,v 1.1.1.1 2005/01/11 21:18:00 kstevens Exp $ 00004 * 00005 * Author: Markus Stenberg <fingon@iki.fi> 00006 * 00007 * Copyright (c) 1997 Markus Stenberg 00008 * Copyright (c) 1998-2002 Thomas Wouters 00009 * Copyright (c) 2000-2002 Cord Awtry 00010 * All rights reserved 00011 * 00012 * Created: Mon Jan 6 15:59:37 1997 fingon 00013 * Last modified: Mon Jan 6 16:57:26 1997 fingon 00014 * 00015 */ 00016 00017 #ifndef AERO_BOMB_H 00018 #define AERO_BOMB_H 00019 00020 typedef struct { 00021 char *name; 00022 int aff; 00023 int type; /* 0 = standard, 1 = inferno, 2 = cluster */ 00024 int weight; 00025 } BOMBINFO; 00026 00027 typedef struct { 00028 int x, y, type; 00029 MAP *map; 00030 } bomb_shot; 00031 00032 #endif /* AERO_BOMB_H */