A Unity runtime inspection plugin for fun
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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