This commit is contained in:
adelikat 2014-06-11 00:27:19 +00:00
parent e07c7a776f
commit 229a6f6ac9
1 changed files with 13 additions and 0 deletions

View File

@ -96,6 +96,19 @@ namespace BizHawk.Client.Common
get { return (Header as MovieHeader).Comments; }
}
public string SyncSettingsJson
{
get
{
return Header[HeaderKeys.SYNCSETTINGS];
}
set
{
Header[HeaderKeys.SYNCSETTINGS] = value;
}
}
public string Filename { get; set; }
public IMovieHeader Header { get; private set; }