RobotCaseDispatcherComponent.cs 296 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class RobotCaseDispatcherComponent: Entity, IAwake, ILoad
  5. {
  6. public static RobotCaseDispatcherComponent Instance;
  7. public Dictionary<int, IRobotCase> Dictionary = new Dictionary<int, IRobotCase>();
  8. }
  9. }