WatcherComponent.cs 310 B

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