PKHeX/PKHeX.Core/Editing/Bulk/ComplexSet/IComplexSet.cs
Kurt e2086d2a0d Misc tweaks
Allow pkm batch editor to take readonlyspan property names
concrete types over `default` for clarity
encounterverifier: use const values for egg levels for clarity
batchediting: fetch all properties only once
etrade4: reduce object size/init by having Contest as a property
2024-12-31 12:53:51 -06:00

13 lines
271 B
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// Complex modification of data to a string value.
/// </summary>
public interface IComplexSet
{
bool IsMatch(ReadOnlySpan<char> name, ReadOnlySpan<char> value);
void Modify(PKM pk, StringInstruction instr);
}