10 lines
191 B
C#
10 lines
191 B
C#
using System.Net;
|
|
using RconSharp;
|
|
|
|
namespace Integrations.Source.Interfaces
|
|
{
|
|
public interface IRConClientFactory
|
|
{
|
|
RconClient CreateClient(IPEndPoint ipEndPoint);
|
|
}
|
|
} |