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