oolite/OOSound.m
Dylan Smith a8d9621f62 First hack (yes, hack) at sound
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@13 127b21dd-08f5-0310-b4b7-95ae10353056
2005-04-23 17:24:24 +00:00

16 lines
427 B
Objective-C

// OOSound.m: Selects the appropriate sound 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.
//
// You should make your sound class a child of NSSound (so you get
// the sound loading functions of NSSound) and call it OOSound.
//
// Dylan Smith, 2005-04-22
#ifdef LINUX
#import "OOAlsaSound.m"
#endif