NetKcpComponent.cs 275 B

123456789101112
  1. using System.Net;
  2. namespace ET
  3. {
  4. [ChildType(typeof(Session))]
  5. public class NetKcpComponent: Entity, IAwake<int>, IAwake<IPEndPoint, int>, IDestroy
  6. {
  7. public AService Service;
  8. public int SessionStreamDispatcherType { get; set; }
  9. }
  10. }