NetKcpComponent.cs 329 B

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