aboutsummaryrefslogtreecommitdiff
path: root/src/sdl/sounds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdl/sounds.h')
-rw-r--r--src/sdl/sounds.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/sdl/sounds.h b/src/sdl/sounds.h
index 3b74aff..38d6a14 100644
--- a/src/sdl/sounds.h
+++ b/src/sdl/sounds.h
@@ -4,7 +4,19 @@
#include <SDL_mixer.h>
#include "assets.h"
+typedef enum {
+ SOUND_BUMP,
+ SOUND_LEVEL_DONE,
+ SOUND_UNDO,
+ SOUND_LEVEL_NEXT,
+ SOUND_LEVEL_RESET,
+ SOUND_LEVEL_WARP,
+ SOUND_SOLVE_CANCEL,
+ SOUND_SOLVE_DONE,
+ SOUND_LAST,
+} sound_t;
+
void sounds_init(Mix_Chunk ** const);
-void sound_play(Mix_Chunk ** const sounds, const asset_id_t);
+void sound_play(Mix_Chunk ** const sounds, const sound_t);
#endif /* SOUNDS_H */