src/music.h
author truebrain
Sat, 07 Jun 2008 23:30:41 +0000
branchnoai
changeset 10856 c7b29152d594
parent 10455 22c441f5adf9
permissions -rw-r--r--
(svn r13407) [NoAI] -Add: added AICompany::IsMine() to ease up owner-checks (no, not the ones to cash in money)
/* $Id$ */

/** @file music.h Base for the music handling. */

#ifndef MUSIC_H
#define MUSIC_H

#define NUM_SONGS_PLAYLIST 33
#define NUM_SONGS_AVAILABLE 22

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

extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];

#endif //MUSIC_H