This commit is contained in:
zznty
2023-11-20 19:36:35 +07:00
parent 3e09ef63fb
commit e1ca099dd9
14 changed files with 45 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
using Torch;
using Torch.API.Managers;
namespace LuckPerms.Torch.ModApi;
public static class TorchApi
{
public static IDependencyProvider Managers =>
#pragma warning disable CS0618 // Type or member is obsolete
TorchBase.Instance.CurrentSession?.Managers ?? TorchBase.Instance.Managers;
#pragma warning restore CS0618 // Type or member is obsolete
}