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

            patchInfo.RemovePrefix(info.method);
        }
示例#2
0
 public static void RemovePrefix(PatchInfo patchInfo, string owner)
 {
     patchInfo.RemovePrefix(owner);
 }