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