using System.Drawing; namespace BizHawk.Client.EmuHawk { /// /// Used for the sorting of the movie details in PlayMovie.cs /// public class MovieDetails { public string Keys { get; set; } public string Values { get; set; } public Color BackgroundColor { get; set; } public MovieDetails() { Keys = ""; Values = ""; BackgroundColor = Color.White; } } }