mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-27 04:25:39 -05:00
Did something similar for NHSE years ago. Allows for much easier reuse elsewhere and clearer usage.
31 lines
629 B
C#
31 lines
629 B
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Batch Editor Modification result for an individual processing operation.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum ModifyResult
|
|
{
|
|
/// <summary>
|
|
/// No modifications were performed as a filter excluded it.
|
|
/// </summary>
|
|
Filtered,
|
|
|
|
/// <summary>
|
|
/// Not a suitable candidate for modification.
|
|
/// </summary>
|
|
Skipped,
|
|
|
|
/// <summary>
|
|
/// One or more modifications was successfully applied.
|
|
/// </summary>
|
|
Modified,
|
|
|
|
/// <summary>
|
|
/// An error was occurred while attempting modifications.
|
|
/// </summary>
|
|
Error = 0x80,
|
|
}
|