Exemple #1
0
        public static void RemovePostfix(PatchInfo patchInfo, HarmonyMethod info)
        {
            if (info == null || info.method == null)
            {
                return;
            }

            patchInfo.RemovePostfix(info.method);
        }
Exemple #2
0
 public static void RemovePostfix(PatchInfo patchInfo, string owner)
 {
     patchInfo.RemovePostfix(owner);
 }