-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugin.cs
More file actions
25 lines (22 loc) · 734 Bytes
/
Plugin.cs
File metadata and controls
25 lines (22 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.IO;
using BepInEx;
using HarmonyLib;
using GearSetsMod.Core;
using GearSetsMod.Patches;
namespace GearSetsMod
{
[BepInPlugin(PluginId, PluginName, PluginVersion)]
public class Plugin : BaseUnityPlugin
{
internal const string PluginId = "com.gearsets.taintedgrail";
internal const string PluginName = "Gear & Skill Sets";
internal const string PluginVersion = "2.2.0";
private void Awake()
{
SetManager.ConfigPath = Path.Combine(Paths.ConfigPath, "GearSets");
var harmony = new Harmony(PluginId);
GearSetsTabPatch.Initialize(harmony, Logger);
Logger.LogInfo($"{PluginName} v{PluginVersion} loaded!");
}
}
}