A Unity runtime inspection plugin for fun
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

23 líneas
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. }