7 lines
185 B
C#
7 lines
185 B
C#
|
namespace Syntriax.Engine.Network.Abstract;
|
||
|
|
||
|
public interface INetworkCommunicatorClient : INetworkCommunicator
|
||
|
{
|
||
|
void Connect(string address, int port, string? password = null);
|
||
|
}
|