Files
Ragon/Ragon/Sources/Server/ISocketServer.cs
T
2022-06-23 21:57:24 +04:00

10 lines
258 B
C#

namespace Ragon.Core;
public interface ISocketServer
{
public void Start(ushort port);
public void Process();
public void Stop();
public void Send(uint peerId, byte[] data, DeliveryType type);
public void Disconnect(uint peerId, uint errorCode);
}