IConnection.cs 212 B

1234567891011
  1. using NetCore.ContentParse;
  2. using NetCore.NetServerCoreBasic;
  3. using NetCore.Protocol;
  4. namespace NetCore
  5. {
  6. public interface IConnection : INetContainer
  7. {
  8. void SendData(object sendData);
  9. }
  10. }