using HarmonyLib;
namespace StardewModdingAPI.Internal.Patching
{
/// A set of Harmony patches to apply.
internal interface IPatcher
{
/*********
** Public methods
*********/
/// Apply the Harmony patches for this instance.
/// The Harmony instance.
/// The monitor with which to log any errors.
public void Apply(Harmony harmony, IMonitor monitor);
}
}