Files
Needlework.Net/Needlework.Net.Core/LcuConnector.cs
BlossomiShymae a8741cd352 WIP
2024-08-02 02:25:17 -05:00

10 lines
419 B
C#

using BlossomiShymae.GrrrLCU;
namespace Needlework.Net.Core;
public static class LcuConnector
{
public static Func<ProcessInfo> GetProcessInfo { get; } = Connector.GetProcessInfo;
public static Func<int, string, Uri> GetLeagueClientUri { get; } = Connector.GetLeagueClientUri;
public static Func<HttpMethod, string, CancellationToken, Task<HttpResponseMessage>> SendAsync { get; } = Connector.SendAsync;
}