mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
24 lines
609 B
C#
24 lines
609 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Option to load a save file automatically to an editing environment.
|
|||
|
/// </summary>
|
|||
|
public enum AutoLoadSetting
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Doesn't auto load a save file, and instead uses a fake save file data.
|
|||
|
/// </summary>
|
|||
|
Disabled,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Loads the most recently created Save File in the usual backup locations.
|
|||
|
/// </summary>
|
|||
|
RecentBackup,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Loads the most recently opened Save File path.
|
|||
|
/// </summary>
|
|||
|
LastLoaded,
|
|||
|
}
|
|||
|
}
|