Files
Ragon/Ragon.Server/INetworkChannel.cs
T
2022-12-16 00:05:46 +04:00

6 lines
87 B
C#

namespace Ragon.Server;
public interface INetworkChannel
{
void Send(byte[] data);
}