A stable modding interface between Techblox and mods https://mod.exmods.org/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

4 лет назад
12345678910111213141516171819202122
  1. using System;
  2. using System.Reflection;
  3. using Harmony;
  4. using UnityEngine;
  5. namespace TestMod
  6. {
  7. [HarmonyPatch]
  8. class TestPatch
  9. {
  10. static void Prefix()
  11. {
  12. Debug.Log("Test Patch Prefix");
  13. }
  14. [HarmonyTargetMethod]
  15. static MethodBase HTargetMethod(HarmonyInstance instance)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. }
  20. }