music.h
author Darkvater
Sat, 12 Aug 2006 12:11:54 +0000
branch0.4
changeset 10072 e9bd7b46e732
parent 10065 fc91a7eca19e
child 4199 61cb1593cbf9
permissions -rw-r--r--
(svn r5857) - Backport from trunk (r5800):
When directories were changed in 'Play Scenario', pressing 'New Game' showed
scenarios from that directory, not the default one.
/* $Id */

#ifndef MUSIC_H
#define MUSIC_H

#define NUM_SONGS_PLAYLIST 33
#define NUM_SONGS_AVAILABLE 22

typedef struct SongSpecs {
	char filename[256];
	char song_name[64];
} SongSpecs;

extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];

#endif //MUSIC_H