blob: 6859ae3c950dc9dc3cdc1ec2b956fdf5f95a1693 (
plain)
1
2
3
4
5
6
7
8
9
|
using Impostor.Api.Net;
namespace Impostor.Server.Net.Factories
{
internal interface IClientFactory
{
ClientBase Create(IHazelConnection connection, string name, int clientVersion);
}
}
|