Initial Commit

This commit is contained in:
2026-03-31 20:57:22 +01:00
parent 3ef83b7790
commit 4177dd357e
53 changed files with 3598 additions and 0 deletions

24
Plugin.cs Normal file
View File

@@ -0,0 +1,24 @@
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using UnlockAll.Patches;
namespace UnlockAll;
[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)]
public class Plugin : BaseUnityPlugin
{
internal static new ManualLogSource Logger;
private const string HARMONYID = "com.celisuis.unlockall";
private void Awake()
{
// Plugin startup logic
Logger = base.Logger;
Logger.LogInfo($"Plugin {MyPluginInfo.PLUGIN_GUID} is loaded!");
Harmony.CreateAndPatchAll(typeof(PlayerPatches), HARMONYID);
Harmony.CreateAndPatchAll(typeof(RecipeConfigPatches), HARMONYID);
}
}