1f39b147ef
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@44 127b21dd-08f5-0310-b4b7-95ae10353056
12 lines
290 B
Objective-C
12 lines
290 B
Objective-C
// OOMusic.m: Selects the appropriate music class source file
|
|
// depending on the operating system defined.
|
|
//
|
|
// Add new OS imports here. The -DOS_NAME flag in the GNUmakefile
|
|
// will select which one gets compiled.
|
|
//
|
|
// David Taylor, 2005-05-04
|
|
|
|
#ifdef LINUX
|
|
#import "SDLMusic.m"
|
|
#endif
|