summaryrefslogtreecommitdiff
path: root/apps/plugins/xrick/data/sounds.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/xrick/data/sounds.c')
-rw-r--r--apps/plugins/xrick/data/sounds.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/apps/plugins/xrick/data/sounds.c b/apps/plugins/xrick/data/sounds.c
new file mode 100644
index 0000000000..853e7cd198
--- /dev/null
+++ b/apps/plugins/xrick/data/sounds.c
@@ -0,0 +1,44 @@
1/*
2 * xrick/data/sounds.c
3 *
4 * Copyright (C) 2008-2014 Pierluigi Vicinanza. All rights reserved.
5 *
6 * The use and distribution terms for this software are contained in the file
7 * named README, which can be found in the root of this distribution. By
8 * using this software in any fashion, you are agreeing to be bound by the
9 * terms of this license.
10 *
11 * You must not remove this notice, or any other, from this software.
12 */
13
14#include "xrick/data/sounds.h"
15
16#ifdef ENABLE_SOUND
17
18#include <stddef.h> /* NULL */
19
20sound_t *soundBombshht = NULL;
21sound_t *soundBonus = NULL;
22sound_t *soundBox = NULL;
23sound_t *soundBullet = NULL;
24sound_t *soundCrawl = NULL;
25sound_t *soundDie = NULL;
26sound_t *soundEntity[SOUNDS_NBR_ENTITIES];
27sound_t *soundExplode = NULL;
28sound_t *soundGameover = NULL;
29sound_t *soundJump = NULL;
30sound_t *soundPad = NULL;
31sound_t *soundSbonus1 = NULL;
32sound_t *soundSbonus2 = NULL;
33sound_t *soundStick = NULL;
34sound_t *soundTune0 = NULL;
35sound_t *soundTune1 = NULL;
36sound_t *soundTune2 = NULL;
37sound_t *soundTune3 = NULL;
38sound_t *soundTune4 = NULL;
39sound_t *soundTune5 = NULL;
40sound_t *soundWalk = NULL;
41
42#endif /* ENABLE_SOUND */
43
44/* eof */ \ No newline at end of file