oolite/OOSound.h
dajt 7cb109935a Classes for SDL sound
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@43 127b21dd-08f5-0310-b4b7-95ae10353056
2005-05-04 11:05:51 +00:00

16 lines
424 B
Objective-C

// OOSound.h: 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 "SDLSound.h"
#endif