mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
a608e0b252
Remove some unnecessary properties from SaveFile Enumerate checksum flag results for GC memcard checking Remove unnecessary checks on savefile type Add some documentation Decapitalize some method parameters
28 lines
750 B
C#
28 lines
750 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Batch Editor Modification result for an individual <see cref="PKM"/>.
|
|
/// </summary>
|
|
internal 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,
|
|
}
|
|
}
|