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 Processes = new Dictionary(); public readonly Dictionary ProcessId2ProcessConfig = new Dictionary(); //configIdQueue public readonly Stack ConfigIdQueue = new Stack(); public int CreateSceneId; //watch是否关闭 public bool IsStop = false; //是否全部关闭 public bool IsAllStop = false; } }