Files
FCP-Tools/Source/FCPTools/FalloutCore/FCPCoreMod.cs
T
2026-02-07 04:39:08 +08:00

25 lines
714 B
C#

using HarmonyLib;
namespace FCP.Core;
public class FCPCoreMod : Mod
{
public static FCPCoreMod mod;
public static Harmony harmony;
public const string LatePatchesCategory = "FCP.Core.LatePatches";
public FCPCoreMod(ModContentPack content) : base(content)
{
harmony = new Harmony("FCP.Core.Patches"); // PatchesUwU ~ Steve
harmony.PatchAllUncategorized();
LongEventHandler.ExecuteWhenFinished(() =>
{
harmony.PatchCategory(LatePatchesCategory);
});
mod = this;
FCPLog.Warning("Beta version: bugs likely, if not guaranteed! " +
"Report bugs on steam workshop page or on discord: 3HEXN3Qbn4");
}
}