mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-19 23:37:39 +08:00

- Use explicit type of var - Use 'new()' - Remove unnecessary usings - Sort usings - Apply formatting
19 lines
444 B
C#
19 lines
444 B
C#
using System;
|
|
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; }
|
|
}
|
|
}
|