SessionStreamDispatcher.cs 249 B

123456789
  1. namespace ET
  2. {
  3. [ComponentOf(typeof(Scene))]
  4. public class SessionStreamDispatcher: Entity, IAwake, IDestroy, ILoad
  5. {
  6. public static SessionStreamDispatcher Instance;
  7. public ISessionStreamDispatcher[] Dispatchers;
  8. }
  9. }