Engine-Pong/Game/Network/INetworkClient.cs

7 lines
153 B
C#
Raw Normal View History

2024-02-02 12:20:25 +03:00
namespace Pong.Network;
public interface INetworkClient : INetworkCommunicator
{
void Connect(string address, int port, string? password = null);
}