SoundStream: change Start/Stop to Init/SetRunning/destruct

This commit is contained in:
Michael M
2017-10-21 16:23:40 -07:00
parent ad4a89d64b
commit 0baddbf9a8
18 changed files with 102 additions and 121 deletions

View File

@ -8,7 +8,12 @@ void NullSound::SoundLoop()
{
}
bool NullSound::Start()
bool NullSound::Init()
{
return true;
}
bool NullSound::SetRunning(bool running)
{
return true;
}
@ -20,7 +25,3 @@ void NullSound::SetVolume(int volume)
void NullSound::Update()
{
}
void NullSound::Stop()
{
}