14 lines
310 B
C++
14 lines
310 B
C++
#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 */
|