ClientSceneManagerComponent.cs 310 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET
  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. }