UnityExplorer/src/Loader/IExplorerLoader.cs
2022-05-26 06:19:50 +10:00

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; }
}
}