17 lines
221 B
C
17 lines
221 B
C
/*
|
|
** music.h - <+DESC+>
|
|
**
|
|
** 2014 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
|
*/
|
|
|
|
#ifndef MUSIC_H
|
|
#define MUSIC_H
|
|
|
|
void
|
|
init_music(struct s_game *g);
|
|
|
|
int
|
|
did_have_beat(struct s_game *g);
|
|
|
|
#endif /* ndef MUSIC_H */
|
|
|