SceneChangeComponent.cs 206 B

12345678910
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. public class SceneChangeComponent: Entity, IAwake, IUpdate, IDestroy
  5. {
  6. public AsyncOperation loadMapOperation;
  7. public ETTask tcs;
  8. }
  9. }