A Unity runtime inspection plugin for fun
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
407B

  1. using System;
  2. using System.Reflection;
  3. using HarmonyLib;
  4. using UnityEngine;
  5. namespace Dissonance
  6. {
  7. //[HarmonyPatch]
  8. class DissonancePatch
  9. {
  10. static void Prefix()
  11. {
  12. Debug.Log("Prefix");
  13. }
  14. [HarmonyTargetMethod]
  15. static MethodBase DissonanceMethod(Harmony instance)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. }
  20. }