using Harmony; namespace StardewModdingAPI.Framework.Patching { /// A Harmony patch to apply. internal interface IHarmonyPatch { /// A unique name for this patch. string Name { get; } /// Apply the Harmony patch. /// The Harmony instance. void Apply(HarmonyInstance harmony); } }