mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-16 22:27:45 +08:00

* Fixed Harmony patches not working properly for games which use older BepInEx releases (ie. Risk of Rain 2) * Fixed a couple minor issues with the config settings
23 lines
486 B
C#
23 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UnityExplorer.Core.Config;
|
|
|
|
namespace UnityExplorer
|
|
{
|
|
public interface IExplorerLoader
|
|
{
|
|
string ExplorerFolder { get; }
|
|
|
|
string ConfigFolder { get; }
|
|
ConfigHandler ConfigHandler { get; }
|
|
|
|
Action<object> OnLogMessage { get; }
|
|
Action<object> OnLogWarning { get; }
|
|
Action<object> OnLogError { get; }
|
|
|
|
void SetupPatches();
|
|
}
|
|
}
|