IW4M-Admin/Integrations/Source/Interfaces/IRConClientFactory.cs
2021-07-11 17:26:30 -05:00

10 lines
191 B
C#

using System.Net;
using RconSharp;
namespace Integrations.Source.Interfaces
{
public interface IRConClientFactory
{
RconClient CreateClient(IPEndPoint ipEndPoint);
}
}