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

10 lines
191 B
C#
Raw Normal View History

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