using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace BuzzGUI.Interfaces { public interface IOpenSong { ISong Song { get; } /// Gets a subsection of section 'BGUI' of the file being opened. Returns null if the subsection is not found in the file. Stream GetSubSection(string name); } }