WatcherComponent.cs 287 B

123456789101112
  1. using System.Collections.Generic;
  2. using System.Diagnostics;
  3. namespace ET
  4. {
  5. public class WatcherComponent: Entity
  6. {
  7. public static WatcherComponent Instance { get; set; }
  8. public readonly Dictionary<int, Process> Processes = new Dictionary<int, Process>();
  9. }
  10. }