HttpComponent.cs 292 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace ET.Server
  4. {
  5. /// <summary>
  6. /// http请求分发器
  7. /// </summary>
  8. [ComponentOf(typeof(Scene))]
  9. public class HttpComponent: Entity, IAwake<string>, IDestroy
  10. {
  11. public HttpListener Listener;
  12. }
  13. }