RobotCaseComponent.cs 298 B

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