ClientSceneManagerComponent.cs 317 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET.Client
  3. {
  4. [ComponentOf(typeof(Scene))]
  5. public class ClientSceneManagerComponent: Entity, IAwake, IDestroy
  6. {
  7. public static ClientSceneManagerComponent Instance;
  8. public Dictionary<int, Scene> ClientScenes = new Dictionary<int, Scene>();
  9. }
  10. }