A Unity runtime inspection plugin for fun
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

23 Zeilen
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. }