using System.Collections.Generic; namespace ET { [ComponentOf(typeof(Scene))] public class ClientSceneManagerComponent: Entity, IAwake, IDestroy { public static ClientSceneManagerComponent Instance; public Dictionary ClientScenes = new Dictionary(); } }