mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-22 23:41:36 -05:00
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
13 lines
271 B
C#
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);
|
|
}
|