oolite/OOMusic.m
2005-05-04 11:12:07 +00:00

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