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

19 строки
526B

  1. using System.Reflection;
  2. using HarmonyLib;
  3. namespace TechbloxModdingAPI.Input
  4. {
  5. [HarmonyPatch]
  6. public static class FakeInputPatch
  7. {
  8. public static void Prefix()
  9. {
  10. FakeInput.inputEngine.HandleCustomInput(); // This gets called right before the input is sent to the server
  11. }
  12. public static MethodBase TargetMethod()
  13. {
  14. return AccessTools.Method("RobocraftX.Multiplayer.Input.DeterministicInputRecorderEngine:RecordDeterministicInput");
  15. }
  16. }
  17. }