RobotCaseComponent.cs 343 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof(Scene))]
  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. }