forked from RedBigz/Citruslib-FixedUp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cs
More file actions
25 lines (21 loc) · 704 Bytes
/
Copy pathMain.cs
File metadata and controls
25 lines (21 loc) · 704 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 BepInEx;
using HarmonyLib;
namespace WobbleBridge
{
[BepInPlugin(pluginGuid, pluginName, pluginVersion)]
public class Main : BaseUnityPlugin
{
public const string pluginGuid = "gmrrh.tabg.wobblebridge";
public const string pluginName = "WobbleBridge";
public const string pluginVersion = "0.1.1";
public void Awake()
{
Wobble.log.Log($"{pluginName} {pluginVersion} Loading!");
new Harmony(pluginGuid).PatchAll();
CommandRegistry.Register();
SettingsRegistry.Register();
CustomLootTables.Register();
WeaponPatchManager.Initialize();
}
}
}