2022-06-18 18:04:24 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Option to load a save file automatically to an editing environment.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum AutoLoadSetting
|
2021-10-22 05:13:21 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// Doesn't auto load a save file, and instead uses a fake save file data.
|
2021-10-22 05:13:21 +00:00
|
|
|
|
/// </summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
Disabled,
|
2021-10-22 05:13:21 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads the most recently created Save File in the usual backup locations.
|
|
|
|
|
/// </summary>
|
|
|
|
|
RecentBackup,
|
2021-10-22 05:13:21 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads the most recently opened Save File path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
LastLoaded,
|
2021-10-22 05:13:21 +00:00
|
|
|
|
}
|