fixed path to external icons
[shermanaquarium] / sherman-aquarium / shermans / soundeffects.h
1 #ifndef SOUNDEFFECTS_H
2 #define SOUNDEFFECTS_H
3
4 void sound_eatscream(void);
5 void sound_explode(void);
6 void sound_bubbles(void);
7
8 #define TYPE_MP3 0
9 #define TYPE_OGG 1
10
11 typedef struct {
12     int on;
13     int type;
14     char *prg;
15 } Sound_settings;
16
17 Sound_settings *sound_get_settings_ptr(void);
18
19 #endif