mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
d772a82953
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
11 lines
153 B
C#
11 lines
153 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal enum ModifyResult
|
|
{
|
|
None,
|
|
Invalid,
|
|
Error,
|
|
Filtered,
|
|
Modified,
|
|
}
|
|
}
|