10 lines
229 B
C#
10 lines
229 B
C#
using HarmonyLib;
|
|
using SpaceEngineers.Game;
|
|
|
|
namespace CringeLauncher.Patches;
|
|
|
|
[HarmonyPatch(typeof(SpaceEngineersGame), "InitializeRender")]
|
|
public static class RenderInitPatch
|
|
{
|
|
private static bool Prefix() => false;
|
|
} |