8 lines
167 B
C#
8 lines
167 B
C#
|
namespace PettingZoo.Core.Connection
|
|||
|
{
|
|||
|
public interface IConnectionFactory
|
|||
|
{
|
|||
|
IConnection CreateConnection(ConnectionParams connectionInfo);
|
|||
|
}
|
|||
|
}
|