first
Some checks failed
Build / Compute Version (push) Successful in 4s
Build / Build Nuget package (CringeBootstrap.Abstractions) (push) Successful in 2m12s
Build / Build Nuget package (NuGet) (push) Successful in 1m55s
Build / Build Nuget package (SharedCringe) (push) Has been cancelled
Build / Build Nuget package (CringePlugins) (push) Has been cancelled
Build / Build Launcher (push) Has been cancelled

This commit is contained in:
zznty
2022-10-28 01:58:54 +07:00
commit e5c4f0c07c
81 changed files with 6162 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using HarmonyLib;
using SpaceEngineers.Game;
namespace CringeLauncher.Patches;
[HarmonyPatch(typeof(SpaceEngineersGame), "InitializeRender")]
public static class RenderInitPatch
{
private static bool Prefix() => false;
}