Moar Gamecraft commands!
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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