#ifndef _SOUNDGLOBAL_H #define _SOUNDGLOBAL_H namespace Engine { void PlaySound (const std::string &sound_name); void PlaySoundLoop (const std::string &sound_name, int count); void HaltSoundLoop (const std::string &sound_name); void PlayMusic (const std::string &music_name); } #endif /* _SOUNDGLOBAL_H */