home *** CD-ROM | disk | FTP | other *** search
/ Game Audio Programming / GameAudioProgramming.iso / Game_Audio / audio_sdk / include / AudioScript / AudioScriptFactory.h next >
Encoding:
C/C++ Source or Header  |  2002-05-27  |  806 b   |  30 lines

  1. /***********************************************************\
  2. Copyright (C) James Boer, 2002. 
  3. All rights reserved worldwide.
  4.  
  5. This software is provided "as is" without express or implied
  6. warranties. You may freely copy and compile this source into
  7. applications you distribute provided that the copyright text
  8. below is included in the resulting source code, for example:
  9. "Portions Copyright (C) James Boer, 2002"
  10. \***********************************************************/
  11. #ifndef __AUDIO_SCRIPT_FACTORY_H
  12. #define __AUDIO_SCRIPT_FACTORY_H
  13.  
  14. namespace Audio
  15. {
  16.  
  17. class IMusicManager;
  18. class ISoundManager;
  19.  
  20. class AudioScriptFactory
  21. {
  22. public:
  23.     static IMusicManager* GetMusicMgr();
  24.     static ISoundManager* GetSoundMgr();
  25.  
  26. };
  27.  
  28. }; // namespace Audio
  29.  
  30. #endif // __AUDIO_SCRIPT_FACTORY_H