| 12345678910111213 |
- using System.Net;
- namespace ET
- {
- [ChildType(typeof(Session))]
- [ComponentOf(typeof(Scene))]
- public class NetKcpComponent: Entity, IAwake<int>, IAwake<IPEndPoint, int>, IDestroy
- {
- public AService Service;
-
- public int SessionStreamDispatcherType { get; set; }
- }
- }
|