| 12345678910111213 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ChildType(typeof(RobotCase))]
- [ComponentOf(typeof(Scene))]
- public class RobotCaseComponent: Entity, IAwake, IDestroy
- {
- public static RobotCaseComponent Instance;
- public Dictionary<int, RobotCase> RobotCases = new Dictionary<int, RobotCase>();
- public int N = 10000;
- }
- }
|