mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-19 06:57:23 -05:00
10 lines
302 B
C#
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);
|
|
} |