11 lines
247 B
C#
11 lines
247 B
C#
|
namespace Pong.Network;
|
||
|
|
||
|
public interface INetworkServer : INetworkCommunicator
|
||
|
{
|
||
|
string Password { get; }
|
||
|
int MaxConnectionCount { get; }
|
||
|
int Port { get; }
|
||
|
|
||
|
void Start(int port, int maxConnectionCount, string? password = null);
|
||
|
}
|