예제 #1
0
파일: GuiUtil.cs 프로젝트: xerohour/scsharp
 public static Sound SoundFromStream(Stream stream)
 {
     byte[] buf = GuiUtil.ReadStream(stream);
     return(Mixer.Sound(buf));
 }