- Fixed duplicate component calls

- Removed loading screen items in SP
- Re-Added custom loading screens for servers
This commit is contained in:
Garrett
2023-12-19 22:37:03 -06:00
parent 04bbf37b12
commit 410ad52b59
6 changed files with 763 additions and 131 deletions

View File

@@ -45,6 +45,19 @@ namespace SeamlessClient.Components
public static readonly Type MySlimBlockType =
Type.GetType("Sandbox.Game.Entities.Cube.MySlimBlock, Sandbox.Game");
public static readonly Type MyLoadingScreenQuote =
Type.GetType("Sandbox.Game.Screens.Helpers.MyLoadingScreenQuote, Sandbox.Game");
public static readonly Type MyLoadingScreenHint =
Type.GetType("Sandbox.Game.Screens.Helpers.MyLoadingScreenHint, Sandbox.Game");
public static readonly Type MyLoadingPerformance =
Type.GetType("Sandbox.Engine.Utils.MyLoadingPerformance, Sandbox.Game");
public static readonly Type MyLoadingScreenText =
Type.GetType("Sandbox.Game.Screens.Helpers.MyLoadingScreenText, Sandbox.Game");
/* Harmony Patcher */
private static readonly Harmony Patcher = new Harmony("SeamlessClientPatcher");