quantum-space-buddies/EpicRerouter/Interop.cs
2022-02-06 21:38:14 -08:00

18 lines
277 B
C#

using HarmonyLib;
using UnityEngine;
namespace EpicRerouter
{
public static class Interop
{
private static void Log(object msg) => Debug.LogError($"[interop] {msg}");
public static void Go()
{
Log("go");
Harmony.CreateAndPatchAll(typeof(Patches));
}
}
}