Exemplo n.º 1
0
 public static SoundBuffer Load(Stream stream)
 {
     return(Load(SoundData.Load(stream)));
 }
Exemplo n.º 2
0
 public static SoundBuffer Load(Stream stream, SoundFileFormat format)
 {
     return(Load(SoundData.Load(stream, format)));
 }
Exemplo n.º 3
0
 public static SoundBuffer Load(string fileName, SoundFileFormat format)
 {
     return(Load(SoundData.Load(fileName, format)));
 }
Exemplo n.º 4
0
 public static SoundBuffer Load(string fileName)
 {
     return(Load(SoundData.Load(fileName)));
 }