PKHeX/PKHeX.Core/Editing/Bulk/Entity/ComplexSet/IComplexSet.cs
Kurt 2efa19e5e3 Refactor batch editor to smaller components
Did something similar for NHSE years ago. Allows for much easier reuse elsewhere and clearer usage.
2026-02-21 00:22:32 -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);
}