NetKcpComponent.cs 308 B

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