remove have-all-weapons hack, shopping is required now
[rofl0r-openDOW.git] / music.h
blob73dc68378a86d4d3cf0e442ca497830727afcba0
1 #ifndef MUSIC_H
2 #define MUSIC_H
4 //RcB: DEP "music.c"
5 enum tune_index {
6 TUNE_FIGHTING = 0,
7 TUNE_MAP,
8 TUNE_2,
9 TUNE_LEVEL_FINISHED,
10 TUNE_4,
11 TUNE_HIGHSCORE,
12 TUNE_TITLE, // played at title screen and when a map is finished
13 TUNE_7,
14 TUNE_INVALID,
15 TUNE_MAX = TUNE_INVALID
18 int music_play(enum tune_index track);
19 int music_restart(void);
21 #endif