palpic2png.c: improve, make usable with ppic binary files
[rofl0r-openDOW.git] / music.h
blob4e116a17ff4f04231582e2d138a8df592c8b7d93
1 #ifndef MUSIC_H
2 #define MUSIC_H
4 #pragma RcB2 DEP "music.c"
6 enum tune_index {
7 TUNE_EMPTY = -1,
8 TUNE_FIGHTING = 0,
9 TUNE_MAP,
10 TUNE_2,
11 TUNE_LEVEL_FINISHED,
12 TUNE_4,
13 TUNE_HIGHSCORE,
14 TUNE_TITLE, // played at title screen and when a map is finished
15 TUNE_7,
16 TUNE_INVALID,
17 TUNE_MAX = TUNE_INVALID
20 int music_play(enum tune_index track);
21 int music_restart(void);
23 #endif