6 lines
87 B
C#
6 lines
87 B
C#
namespace Ragon.Server;
|
|
|
|
public interface INetworkChannel
|
|
{
|
|
void Send(byte[] data);
|
|
} |