RobotCaseDispatcherComponent.cs 329 B

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