Engine-Pong/Game/Network/INetworkClient.cs

7 lines
153 B
C#

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