UILoadingComponent.cs 138 B

12345678910
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. namespace ET
  4. {
  5. public class UILoadingComponent : Entity, IAwake
  6. {
  7. public Text text;
  8. }
  9. }