mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
11 lines
338 B
C#
11 lines
338 B
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|||
|
public sealed class TradebackSettings
|
|||
|
{
|
|||
|
[LocalizedDescription("GB: Allow Generation 2 tradeback learnsets for PK1 formats. Disable when checking RBY Metagame rules.")]
|
|||
|
public bool AllowGen1Tradeback { get; set; } = true;
|
|||
|
}
|