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