src/music.h
author belugas
Sat, 10 Mar 2007 03:33:43 +0000
changeset 6279 fdae79bd4dc7
parent 6248 e4a2ed7e5613
child 8812 4fd6de597c6e
permissions -rw-r--r--
(svn r9089) -Codechange: Remove the 32 widgets limit on News Options window.
-Codechange: Use the newly created WWT_TEXT widget.
-Cleanup: remove a lot of magic numbers, make the whole window more flexible, with now the possibility to easily add new type of news events.
Thanks glx for ideas from an old patch
/* $Id$ */

/** @file music.h */

#ifndef MUSIC_H
#define MUSIC_H

#define NUM_SONGS_PLAYLIST 33
#define NUM_SONGS_AVAILABLE 22

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

extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];

#endif //MUSIC_H