TechbloxModdingAPI/GamecraftModdingAPI/TestPatch.cs
2019-12-12 21:00:11 -08:00

23 lines
409 B
C#

using System;
using System.Reflection;
using Harmony;
using UnityEngine;
namespace TestMod
{
[HarmonyPatch]
class TestPatch
{
static void Prefix()
{
Debug.Log("Test Patch Prefix");
}
[HarmonyTargetMethod]
static MethodBase HTargetMethod(HarmonyInstance instance)
{
throw new NotImplementedException();
}
}
}