2021-03-11 17:57:58 +11:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2021-03-30 19:50:04 +11:00
|
|
|
|
using UnityExplorer.Core.Config;
|
2021-03-11 17:57:58 +11:00
|
|
|
|
|
|
|
|
|
namespace UnityExplorer
|
|
|
|
|
{
|
|
|
|
|
public interface IExplorerLoader
|
|
|
|
|
{
|
|
|
|
|
string ExplorerFolder { get; }
|
|
|
|
|
|
|
|
|
|
string ConfigFolder { get; }
|
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; }
|
|
|
|
|
|
2021-04-02 17:06:49 +11:00
|
|
|
|
void SetupPatches();
|
2021-03-11 17:57:58 +11:00
|
|
|
|
}
|
|
|
|
|
}
|