mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-30 14:05:33 -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
8 lines
248 B
C#
8 lines
248 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed class MysteryGiftDatabaseSettings
|
|
{
|
|
[LocalizedDescription("Hides gifts if the currently loaded save file cannot (indirectly) receive them.")]
|
|
public bool FilterUnavailableSpecies { get; set; } = true;
|
|
}
|