mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-25 16:35:02 -05:00
Allows specifying Dark mode in settings now. Extracts reusable settings objects to PKHeX.Core (drawing/GUI stuff kept in WinForms). Updating settings now refreshes backup paths/mgdb
16 lines
575 B
C#
16 lines
575 B
C#
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms;
|
|
|
|
public sealed class SlotExportSettings
|
|
{
|
|
[LocalizedDescription("Settings to use for box exports.")]
|
|
public BoxExportSettings BoxExport { get; set; } = new();
|
|
|
|
[LocalizedDescription("Selected File namer to use for box exports for the GUI, if multiple are available.")]
|
|
public string DefaultBoxExportNamer { get; set; } = "";
|
|
|
|
[LocalizedDescription("Allow drag and drop of boxdata binary files from the GUI via the Box tab.")]
|
|
public bool AllowBoxDataDrop { get; set; } // default to false, clunky to use
|
|
}
|