-
Notifications
You must be signed in to change notification settings - Fork 0
/
audio.h
30 lines (25 loc) · 824 Bytes
/
audio.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __AUDIO_H
#define __AUDIO_H
/************************************************************
* ***
* ~~=) All Rights Reversed - No Rights Reserved (=~~ ***
* ***
* Boomtime, the 41st day of Confusion in the YOLD 3184 ***
* ***
* Albert Veli ***
************************************************************/
#include <emscripten.h>
#include <SDL2/SDL.h>
#include <SDL/SDL_mixer.h>
void play_bounce(void);
void play_bgmusic(void);
int init_audio(void);
void cleanup_audio(void);
/**
* Local Variables:
* mode: c
* indent-tabs-mode: nil
* c-basic-offset: 3
* End:
*/
#endif /* __AUDIO_H */