using System; using System.Reflection; using HarmonyLib; using UnityEngine; namespace Dissonance { //[HarmonyPatch] class DissonancePatch { static void Prefix() { Debug.Log("Prefix"); } [HarmonyTargetMethod] static MethodBase DissonanceMethod(Harmony instance) { throw new NotImplementedException(); } } }