mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-15 13:57:31 +08:00
18 lines
430 B
C#
18 lines
430 B
C#
using UnityExplorer.Config;
|
|
|
|
namespace UnityExplorer
|
|
{
|
|
public interface IExplorerLoader
|
|
{
|
|
string ExplorerFolderDestination { get; }
|
|
string ExplorerFolderName { get; }
|
|
string UnhollowedModulesFolder { get; }
|
|
|
|
ConfigHandler ConfigHandler { get; }
|
|
|
|
Action<object> OnLogMessage { get; }
|
|
Action<object> OnLogWarning { get; }
|
|
Action<object> OnLogError { get; }
|
|
}
|
|
}
|