2005-04-23 17:24:24 +00:00
|
|
|
// 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
|
2005-05-04 11:05:51 +00:00
|
|
|
#import "SDLSound.m"
|
2005-04-23 17:24:24 +00:00
|
|
|
#endif
|
|
|
|
|