| 123456789101112131415161718 |
- 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<TestObjectInfo> TestObjectInfoList = new List<TestObjectInfo>();
-
- public long TimeoutCheckTimer;
-
- //进程内所有机器人<批次id,机器人Scene> --- 是为了之后指定向批量销毁
- public MultiMap<int, Scene> ZoneSceneMap = new MultiMap<int, Scene>();
- }
|