namespace Pong.Network;
public interface INetworkClient : INetworkCommunicator
{
void Connect(string address, int port, string? password = null);
}