using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace BuzzGUI.Interfaces { public interface ISaveSong { ISong Song { get; } /// Creates a subsection in section 'BGUI' of the file being saved. Returns null if the subsection already exists. Stream CreateSubSection(string name); } }