NetKcpComponent.cs 297 B

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