mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
24 lines
568 B
C#
24 lines
568 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Setting to conditionally update PKM properties when importing to a save file.
|
|
/// </summary>
|
|
public enum PKMImportSetting
|
|
{
|
|
/// <summary>
|
|
/// Use whatever the global setting is.
|
|
/// </summary>
|
|
UseDefault,
|
|
|
|
/// <summary>
|
|
/// Always update the PKM properties to match the save file.
|
|
/// </summary>
|
|
Update,
|
|
|
|
/// <summary>
|
|
/// Never update the PKM properties to match the save file.
|
|
/// </summary>
|
|
Skip,
|
|
}
|
|
}
|