refactor: moved client and server interfaces into their files
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
public interface INetworkCommunicatorClient : INetworkCommunicator
|
||||
{
|
||||
INetworkCommunicatorClient Connect(string address, int port, string? password = null);
|
||||
|
||||
INetworkCommunicatorClient SendToServer<T>(T packet, PacketDelivery packetDelivery = PacketDelivery.ReliableInOrder) where T : class, new();
|
||||
}
|
Reference in New Issue
Block a user