| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Diagnostics;
- namespace ET
- {
- public class WatcherComponent : Entity, IAwake, IDestroy, IAppClose
- {
- public static WatcherComponent Instance { get; set; }
- public readonly Dictionary<int, Process> Processes = new Dictionary<int, Process>();
- public readonly Dictionary<int, int> ProcessId2ProcessConfig = new Dictionary<int, int>();
- //configIdQueue
- public readonly Stack<int> ConfigIdQueue = new Stack<int>();
- public int CreateSceneId;
- //watch是否关闭
- public bool IsStop = false;
- //是否全部关闭
- public bool IsAllStop = false;
- }
- }
|