Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 03c8e5a

Browse files
committed
Add Harmony instance to ExplorerCore, bump version
1 parent 44f7209 commit 03c8e5a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ExplorerCore.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,22 @@
1414
using UnityExplorer.Inspectors;
1515
using UnityExplorer.ObjectExplorer;
1616
using UnityExplorer.UI.Panels;
17+
using HarmonyLib;
1718

1819
namespace UnityExplorer
1920
{
2021
public static class ExplorerCore
2122
{
2223
public const string NAME = "UnityExplorer";
23-
public const string VERSION = "4.1.11";
24+
public const string VERSION = "4.2.0";
2425
public const string AUTHOR = "Sinai";
2526
public const string GUID = "com.sinai.unityexplorer";
2627

2728
public static IExplorerLoader Loader { get; private set; }
2829
public static RuntimeContext Context { get; internal set; }
2930

31+
public static HarmonyLib.Harmony Harmony { get; } = new HarmonyLib.Harmony(GUID);
32+
3033
/// <summary>
3134
/// Initialize UnityExplorer with the provided Loader implementation.
3235
/// </summary>

0 commit comments

Comments
 (0)