mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-18 14:28:33 +00:00
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
22 lines
531 B
C#
22 lines
531 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Option to load a save file automatically to an editing environment.
|
|
/// </summary>
|
|
public enum AutoLoadSetting
|
|
{
|
|
/// <summary>
|
|
/// Doesn't autoload 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,
|
|
}
|