NAK_CVR_Mods/SmoothRay/HarmonyPatches.cs
2024-01-01 11:58:25 -06:00

14 lines
No EOL
305 B
C#

using ABI_RC.Core.Player;
using HarmonyLib;
namespace NAK.SmoothRay.HarmonyPatches;
internal class PlayerSetupPatches
{
[HarmonyPostfix]
[HarmonyPatch(typeof(PlayerSetup), nameof(PlayerSetup.Start))]
private static void Postfix_PlayerSetup_Start(ref PlayerSetup __instance)
{
}
}