mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 18:00:16 +08:00
30 lines
1.5 KiB
C#
30 lines
1.5 KiB
C#
using BepInEx.Configuration;
|
|
using CheatEnabler.Functions.DysonSphere;
|
|
using UXAssist.Common;
|
|
using UXAssist.Common.ModFeatures;
|
|
|
|
namespace CheatEnabler.Functions;
|
|
|
|
[ModFeature("CheatDysonSphere", Order = 20)]
|
|
public static class DysonSphereFunctions
|
|
{
|
|
public const int MinShellsCountForFunctions = 1;
|
|
public const int MaxShellsCountForFunctions = 99_999;
|
|
|
|
public static ConfigEntry<bool> IllegalDysonShellFunctionsEnabled;
|
|
public static ConfigEntry<int> ShellsCountForFunctions;
|
|
|
|
public static void Init()
|
|
{
|
|
}
|
|
|
|
public static void CompleteShellsInstantly() => ShellCompletionFunctions.CompleteShellsInstantly();
|
|
public static void RemoveAllFrames() => FrameRemovalFunctions.RemoveAllFrames();
|
|
public static void DuplicateShellsWithHighestProduction() => IllegalShellFunctions.DuplicateShellsWithHighestProduction();
|
|
public static void KeepMaxProductionShells() => IllegalShellFunctions.KeepMaxProductionShells();
|
|
public static void CreateIllegalDysonShellQuickly(int triangleCount) => IllegalShellFunctions.CreateIllegalDysonShellQuickly(triangleCount);
|
|
public static void CreateIllegalDysonShellWithMaxOutput() => IllegalShellFunctions.CreateIllegalDysonShellWithMaxOutput();
|
|
public static void CreateIllegalDysonShellWithMaxOutputForAllLayers() => IllegalShellFunctions.CreateIllegalDysonShellWithMaxOutputForAllLayers();
|
|
public static void CreateIllegalDysonShellsSpecially() => IllegalShellFunctions.CreateIllegalDysonShellsSpecially();
|
|
}
|