using UnityExplorer.Config; namespace UnityExplorer { public interface IExplorerLoader { string ExplorerFolderDestination { get; } string ExplorerFolderName { get; } string UnhollowedModulesFolder { get; } ConfigHandler ConfigHandler { get; } Action OnLogMessage { get; } Action OnLogWarning { get; } Action OnLogError { get; } } }