UIShareComponent.cs 310 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. namespace ET.Client
  5. {
  6. [ComponentOf(typeof(UI))]
  7. public class UIShareComponent : Entity, IAwake
  8. {
  9. public GameObject friendShareBtn;
  10. public GameObject wechatShareBtn;
  11. public GameObject clickBtn;
  12. }
  13. }