Update guiEngine.cpp

This commit is contained in:
Ian Giestas Pauli 2017-01-27 22:17:06 -02:00 committed by GitHub
parent 70b5bd5a34
commit 08bc58184a
1 changed files with 13 additions and 1 deletions

View File

@ -601,10 +601,22 @@ void GUIEngine::stopSound(s32 handle)
m_sound_manager->stopSound(handle);
}
/******************************************************************************/
void GUIEngine::pauseSound(s32 handle)
{
m_sound_manager->pauseSound(handle);
}
/******************************************************************************/
void GUIEngine::resumeSound(s32 handle)
{
m_sound_manager->resumeSound(handle);
}
/******************************************************************************/
unsigned int GUIEngine::queueAsync(std::string serialized_func,
std::string serialized_params)
{
return m_script->queueAsync(serialized_func, serialized_params);
}