RobotCaseComponent.cs 373 B

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