mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
18 lines
384 B
C#
18 lines
384 B
C#
using HarmonyLib;
|
|
using NewHorizons.Handlers;
|
|
|
|
namespace NewHorizons.Patches.CreditsScene
|
|
{
|
|
[HarmonyPatch]
|
|
public static class CreditsPatches
|
|
{
|
|
[HarmonyPrefix]
|
|
[HarmonyPatch(typeof(Credits), nameof(Credits.Start))]
|
|
public static void Credits_Start(Credits __instance)
|
|
{
|
|
CreditsHandler.AddCredits(__instance);
|
|
}
|
|
}
|
|
}
|
|
|