示例#1
0
文件: Output.cs 项目: RoseLeBlood/rap
        public ISoundStream CreateStream(System.IO.Stream stream, bool b3D)
        {
            Dummy_SoundStream _stream = new Dummy_SoundStream();

            _stream.Create(m_System);
            _stream.LoadStream(stream, b3D);

            return(_stream);
        }
示例#2
0
文件: Output.cs 项目: RoseLeBlood/rap
        public ISoundStream CreateStream(string path, bool b3D)
        {
            Dummy_SoundStream stream = new Dummy_SoundStream();

            stream.IsSupport(path);
            stream.Create(m_System);
            stream.LoadStream(path, b3D);

            return(stream);
        }