summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Patching/IHarmonyPatch.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/Patching/IHarmonyPatch.cs')
-rw-r--r--src/SMAPI/Framework/Patching/IHarmonyPatch.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/SMAPI/Framework/Patching/IHarmonyPatch.cs b/src/SMAPI/Framework/Patching/IHarmonyPatch.cs
deleted file mode 100644
index 38d30ab2..00000000
--- a/src/SMAPI/Framework/Patching/IHarmonyPatch.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-#if HARMONY_2
-using HarmonyLib;
-#else
-using Harmony;
-#endif
-
-namespace StardewModdingAPI.Framework.Patching
-{
- /// <summary>A Harmony patch to apply.</summary>
- internal interface IHarmonyPatch
- {
- /*********
- ** Methods
- *********/
- /// <summary>Apply the Harmony patch.</summary>
- /// <param name="harmony">The Harmony instance.</param>
-#if HARMONY_2
- void Apply(Harmony harmony);
-#else
- void Apply(HarmonyInstance harmony);
-#endif
- }
-}