using System.Net; namespace SharedLibraryCore.Interfaces { /// /// defines the capabilities of an RCon connection factory /// public interface IRConConnectionFactory { /// /// creates an rcon connection instance /// /// ip address and port of the server /// password of the server /// engine to create the rcon connection to /// instance of rcon connection IRConConnection CreateConnection(IPEndPoint ipEndpoint, string password, string rconEngine); } }