using System.Collections.Generic;
using System.Net;
namespace ET.Server
{
///
/// http请求分发器
///
[ComponentOf(typeof(Scene))]
public class HttpComponent: Entity, IAwake, IDestroy, ILoad
{
public HttpListener Listener;
public Dictionary dispatcher;
}
}