mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
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);
|
|
}
|
|
} |