repo.or.cz
/
rofl0r-openDOW.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove have-all-weapons hack, shopping is required now
[rofl0r-openDOW.git]
/
music.h
blob
73dc68378a86d4d3cf0e442ca497830727afcba0
1
#ifndef MUSIC_H
2
#define MUSIC_H
3
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
16
};
17
18
int
music_play
(
enum
tune_index track
);
19
int
music_restart
(
void
);
20
21
#endif