BizHawk/BizHawk.Client.EmuHawk/movie/MovieDetails.cs

22 lines
425 B
C#
Raw Normal View History

using System.Drawing;
namespace BizHawk.Client.EmuHawk
{
/// <summary>
/// Used for the sorting of the movie details in PlayMovie.cs
/// </summary>
public class MovieDetails
{
public string Keys { get; set; }
public string Values { get; set; }
public Color BackgroundColor { get; set; }
public MovieDetails()
{
2017-05-10 11:45:23 +00:00
Keys = "";
Values = "";
BackgroundColor = Color.White;
}
}
}