Initial revision
[supertux.git] / src / sound.h
1 /*
2   sound.h
3   
4   Super Tux - Audio Functions
5   
6   by Bill Kendrick
7   bill@newbreedsoftware.com
8   http://www.newbreedsoftware.com/supertux/
9   
10   April 22, 2000 - July 15, 2002
11 */
12
13
14 #ifndef NOSOUND
15
16 Mix_Chunk * load_sound(char * file);
17 void playsound(Mix_Chunk * snd);
18 Mix_Music * load_song(char * file);
19
20 #endif