2024-02-09 10:00:36 +03:00
|
|
|
namespace Syntriax.Engine.Network.Abstract;
|
2024-02-02 12:20:25 +03:00
|
|
|
|
|
|
|
public interface INetworkServer : INetworkCommunicator
|
|
|
|
{
|
|
|
|
string Password { get; }
|
|
|
|
int MaxConnectionCount { get; }
|
|
|
|
int Port { get; }
|
|
|
|
|
|
|
|
void Start(int port, int maxConnectionCount, string? password = null);
|
|
|
|
}
|