mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-03 03:52:28 +08:00
27 lines
586 B
C#
27 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UnityExplorer.Core.Config;
|
|
|
|
namespace UnityExplorer
|
|
{
|
|
public interface IExplorerLoader
|
|
{
|
|
string ExplorerFolder { get; }
|
|
|
|
string ConfigFolder { get; }
|
|
ConfigHandler ConfigHandler { get; }
|
|
|
|
Action<object> OnLogMessage { get; }
|
|
Action<object> OnLogWarning { get; }
|
|
Action<object> OnLogError { get; }
|
|
|
|
#if ML
|
|
Harmony.HarmonyInstance HarmonyInstance { get; }
|
|
#else
|
|
HarmonyLib.Harmony HarmonyInstance { get; }
|
|
#endif
|
|
}
|
|
}
|