1 /*
2  * XGalaga-SDL - a SDL port of XGalaga, clone of the game Galaga
3  * Copyright (c) 1995-1998 Joe Rumsey (mrogre@mediaone.net)
4  * Copyright (c) 1994 Sujal M. Patel (smpatel@wam.umd.edu)
5  * Copyright (c) 2010 Frank Zago
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301, USA.
21  */
22 
23 #define SND_EXPLOSION 0
24 #define SND_FIRETORP  1
25 #define SND_SHIELD    2
26 #define SND_TORPHIT   3
27 #define SND_EXP_SB    4
28 #define SND_DDLOO     5
29 #define SND_WARP      6
30 #define SND_SMART     7
31 
32 void init_sound (void);			/* Init Sound System */
33 void play_sound (int k);		/* Play a Sound */
34