UnityExplorer/src/Loader/IExplorerLoader.cs

19 lines
444 B
C#
Raw Normal View History

2021-03-11 17:57:58 +11:00
using System;
using UnityExplorer.Config;
2021-03-11 17:57:58 +11:00
namespace UnityExplorer
{
public interface IExplorerLoader
{
string ExplorerFolderDestination { get; }
string ExplorerFolderName { get; }
string UnhollowedModulesFolder { get; }
2021-03-11 17:57:58 +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; }
}
}