| author | tron |
| Tue, 29 Aug 2006 06:50:47 +0000 | |
| changeset 4440 | 292881d13622 |
| parent 4199 | 08c830893ab2 |
| permissions | -rw-r--r-- |
| 4199 | 1 |
/* $Id$ */ |
|
4120
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
2 |
|
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
3 |
#ifndef MUSIC_H |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
4 |
#define MUSIC_H |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
5 |
|
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
6 |
#define NUM_SONGS_PLAYLIST 33 |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
7 |
#define NUM_SONGS_AVAILABLE 22 |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
8 |
|
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
9 |
typedef struct SongSpecs {
|
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
10 |
char filename[256]; |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
11 |
char song_name[64]; |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
12 |
} SongSpecs; |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
13 |
|
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
14 |
extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE]; |
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
15 |
|
|
b21fda0c260a
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff
changeset
|
16 |
#endif //MUSIC_H |