mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 18:10:23 +08:00
13 lines
336 B
C#
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);
|
|
}
|
|
}
|