UIHelpComponent.cs 169 B

1234567891011
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. namespace ET.Client
  4. {
  5. [ComponentOf(typeof(UI))]
  6. public class UIHelpComponent : Entity, IAwake
  7. {
  8. public Text text;
  9. }
  10. }