Esempio n. 1
0
        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);
        }
Esempio n. 2
0
        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);
        }