mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
13 lines
300 B
C#
13 lines
300 B
C#
using Integrations.Source.Interfaces;
|
|
using RconSharp;
|
|
|
|
namespace Integrations.Source
|
|
{
|
|
public class RConClientFactory : IRConClientFactory
|
|
{
|
|
public RconClient CreateClient(string hostname, int port)
|
|
{
|
|
return RconClient.Create(hostname, port);
|
|
}
|
|
}
|
|
} |