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