2021-03-11 17:57:58 +11:00
|
|
|
|
using System;
|
2022-01-17 19:42:05 +11:00
|
|
|
|
using UnityExplorer.Config;
|
2021-03-11 17:57:58 +11:00
|
|
|
|
|
|
|
|
|
namespace UnityExplorer
|
|
|
|
|
{
|
|
|
|
|
public interface IExplorerLoader
|
|
|
|
|
{
|
2022-04-12 00:26:01 +10:00
|
|
|
|
string ExplorerFolderDestination { get; }
|
|
|
|
|
string ExplorerFolderName { get; }
|
2021-08-19 16:20:25 +10:00
|
|
|
|
string UnhollowedModulesFolder { get; }
|
2021-03-11 17:57:58 +11:00
|
|
|
|
|
2021-03-30 21:23:45 +11:00
|
|
|
|
ConfigHandler ConfigHandler { get; }
|
2021-03-11 17:57:58 +11:00
|
|
|
|
|
|
|
|
|
Action<object> OnLogMessage { get; }
|
|
|
|
|
Action<object> OnLogWarning { get; }
|
|
|
|
|
Action<object> OnLogError { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|