TechbloxModdingAPI/GamecraftModdingAPI/TestPatch.cs

23 lines
409 B
C#
Raw Normal View History

2019-12-13 05:00:11 +00:00
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();
}
}
}