PKHeX/PKHeX.Core/Editing/Bulk/ModifyResult.cs
Kurt d772a82953 Move batch editor logic to core
previous hurdle a year ago was propertyinfo fetching not looking at the
base class's properties; dig deeper for all properties to mimic existing
code for netframework

end result is batch editing now possible without gui
2018-05-17 22:43:07 -07:00

11 lines
153 B
C#

namespace PKHeX.Core
{
internal enum ModifyResult
{
None,
Invalid,
Error,
Filtered,
Modified,
}
}