RobotCaseComponent.cs 333 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. [ChildType(typeof(RobotCase))]
  5. public class RobotCaseComponent: Entity, IAwake, IDestroy
  6. {
  7. public static RobotCaseComponent Instance;
  8. public Dictionary<int, RobotCase> RobotCases = new Dictionary<int, RobotCase>();
  9. public int N = 10000;
  10. }
  11. }