using System.Collections.Generic; namespace BizHawk.Client.Common { public interface IMovieHeader : IDictionary { SubtitleList Subtitles { get; } Dictionary BoardProperties { get; } List Comments { get; } ulong Rerecords { get; set; } bool StartsFromSavestate { get; set; } string GameName { get; set; } string SystemID { get; set; } /// /// Receives a line and attempts to add as a header /// /// /// The line of text loaded from a movie file. /// /// /// returns false if not a useable header line /// bool ParseLineFromFile(string line); } }