mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 18:20:47 +01:00
10 lines
419 B
C#
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;
|
|
} |