IW4M-Admin/Integrations/Source/Interfaces/IRConClientFactory.cs

10 lines
191 B
C#
Raw Normal View History

2021-07-11 18:26:30 -04:00
using System.Net;
using RconSharp;
2021-06-03 11:51:03 -04:00
namespace Integrations.Source.Interfaces
{
public interface IRConClientFactory
{
2021-07-11 18:26:30 -04:00
RconClient CreateClient(IPEndPoint ipEndPoint);
2021-06-03 11:51:03 -04:00
}
}