mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
14 lines
346 B
C#
14 lines
346 B
C#
using System.Net;
|
|
using Integrations.Source.Interfaces;
|
|
using RconSharp;
|
|
|
|
namespace Integrations.Source
|
|
{
|
|
public class RConClientFactory : IRConClientFactory
|
|
{
|
|
public RconClient CreateClient(IPEndPoint ipEndPoint)
|
|
{
|
|
return RconClient.Create(ipEndPoint.Address.ToString(), ipEndPoint.Port);
|
|
}
|
|
}
|
|
} |