WatcherComponent.cs 345 B

12345678910111213
  1. using System.Collections.Generic;
  2. using System.Diagnostics;
  3. namespace ET.Server
  4. {
  5. [ComponentOf(typeof(Scene))]
  6. public class WatcherComponent: Entity, IAwake, IDestroy
  7. {
  8. public static WatcherComponent Instance { get; set; }
  9. public readonly Dictionary<int, Process> Processes = new Dictionary<int, Process>();
  10. }
  11. }