mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
27 lines
658 B
C#
27 lines
658 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Batch Editor Modification result for an individual <see cref="PKM"/>.
|
|
/// </summary>
|
|
public enum ModifyResult
|
|
{
|
|
/// <summary>
|
|
/// The <see cref="PKM"/> has invalid data and is not a suitable candidate for modification.
|
|
/// </summary>
|
|
Invalid,
|
|
|
|
/// <summary>
|
|
/// An error was occurred while iterating modifications for this <see cref="PKM"/>.
|
|
/// </summary>
|
|
Error,
|
|
|
|
/// <summary>
|
|
/// The <see cref="PKM"/> was skipped due to a matching Filter.
|
|
/// </summary>
|
|
Filtered,
|
|
|
|
/// <summary>
|
|
/// The <see cref="PKM"/> was modified.
|
|
/// </summary>
|
|
Modified,
|
|
}
|