RobotHubComponent.cs 547 B

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