namespace SharedLibraryCore.Interfaces { /// /// defines the capabilities of an RCon connection factory /// public interface IRConConnectionFactory { /// /// creates an rcon connection instance /// /// ip address of the server /// port of the server /// password of the server /// instance of rcon connection IRConConnection CreateConnection(string ipAddress, int port, string password); } }