NHSE/NHSE.Core/Editing/Batch/BatchMutator.cs
2026-01-13 16:02:58 -06:00

10 lines
302 B
C#

using System.Collections.Generic;
namespace NHSE.Core;
public abstract class BatchMutator<T> where T : class
{
protected const string CONST_RAND = "$rand";
public abstract ModifyResult Modify(T item, IEnumerable<StringInstruction> filters, IEnumerable<StringInstruction> modifications);
}