mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-20 15:47:54 +08:00
25 lines
508 B
C#
25 lines
508 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace UnityExplorer
|
|||
|
{
|
|||
|
public interface IExplorerLoader
|
|||
|
{
|
|||
|
string ExplorerFolder { get; }
|
|||
|
|
|||
|
string ConfigFolder { 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
|
|||
|
}
|
|||
|
}
|