mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
11 lines
351 B
C#
11 lines
351 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Modifies a property to have a "correct" value based on derived legality.
|
|
/// </summary>
|
|
public interface ISuggestModification
|
|
{
|
|
public bool IsMatch(string name, string value, BatchInfo info);
|
|
public ModifyResult Modify(string name, string value, BatchInfo info);
|
|
}
|
|
}
|