Files
TorchPlugins/LuckPerms.Torch.Utils/ModApi/TorchApi.cs
2023-11-20 19:36:35 +07:00

12 lines
366 B
C#

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
}