SoundTests PlaySound Method Delta Engine Documentation

Namespace: DeltaEngine.Multimedia.Tests
Assembly: DeltaEngine.Multimedia.Tests (in DeltaEngine.Multimedia.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void PlaySound()
Examples

[Test]
public void PlaySound()
{
    ContentLoader.Load<Sound>("DefaultSound").Play();
}
[Test]
public void PlaySoundFromMp3MusicContent()
{
    ContentLoader.Load<Sound>("DefaultMusic").Play();
}
[Test]
public void PlaySoundFromOggMusicContent()
{
    ContentLoader.Load<Sound>("OggMusic").Play();
}
See Also