using System.Collections.Generic; using Microsoft.AspNetCore.SignalR.Client; namespace ET; public class RobotHubComponent : Entity, IAwake, IDestroy { public static RobotHubComponent Instance; public HubConnection Connection; public List TestObjectInfoList = new List(); public long TimeoutCheckTimer; //进程内所有机器人<批次id,机器人Scene> --- 是为了之后指定向批量销毁 public MultiMap ZoneSceneMap = new MultiMap(); }