mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
11 lines
269 B
C#
11 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);
|
|
}
|
|
}
|