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
palpic2png.c: improve, make usable with ppic binary files
[rofl0r-openDOW.git]
/
music.h
blob
4e116a17ff4f04231582e2d138a8df592c8b7d93
1
#ifndef MUSIC_H
2
#define MUSIC_H
3
4
#pragma RcB2 DEP
"music.c"
5
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
18
};
19
20
int
music_play
(
enum
tune_index track
);
21
int
music_restart
(
void
);
22
23
#endif