Files
DSP_Mods/CheatEnabler/Patches/FactoryPatchCompat.cs
T

13 lines
336 B
C#

namespace CheatEnabler.Patches;
/// <summary>
/// Preserves the pre-refactor type and method identity used by mods that locate FactoryPatch through reflection.
/// </summary>
public static class FactoryPatch
{
public static void ArrivePlanet(PlanetFactory factory)
{
Factory.FactoryPatch.ArrivePlanet(factory);
}
}