pkNX/pkNX.WinForms/ProgramSettings.cs
Kurt 103b0bab2f Minor perf: cache successful gameversion from rom
Skip fetching/counting all files for the unpacked ROM that is used in determining which ROM it is.
Once we've computed it the first time, we can just reuse the value.
2022-10-01 14:24:20 -07:00

11 lines
252 B
C#

using pkNX.Structures;
namespace pkNX.WinForms;
public class ProgramSettings
{
public int Language { get; set; } = 2;
public string GamePath { get; set; } = string.Empty;
public GameVersion GameOverride { get; set; } = GameVersion.Any;
}