mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-23 19:03:11 +00:00
12 lines
269 B
C#
12 lines
269 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Complex modification of data to a string value.
|
|||
|
/// </summary>
|
|||
|
public interface IComplexSet
|
|||
|
{
|
|||
|
bool IsMatch(string name, string value);
|
|||
|
void Modify(PKM pk, StringInstruction instr);
|
|||
|
}
|
|||
|
}
|