void plVoiceSound::Play()
{
    fPlaying = true;
    if( IWillBeAbleToPlay() )
    {
        IRefreshParams();
        SetVolume( fDesiredVol );
        IActuallyPlay();
    }
}
Example #2
0
void plWin32VideoSound::Play()
{
    IActuallyPlay();
}