TipsFreeIconItem.cs 615 B

123456789101112131415161718192021222324252627282930
  1. /****************************************************************************
  2. * 2025.5 CHIVA
  3. ****************************************************************************/
  4. using System;
  5. using System.Collections.Generic;
  6. using UnityEngine;
  7. using UnityEngine.UI;
  8. using QFramework;
  9. namespace QFramework
  10. {
  11. public partial class TipsFreeIconItem : UIElement
  12. {
  13. private RectTransform _rectTransform;
  14. private void Awake()
  15. {
  16. _rectTransform = GetComponent<RectTransform>();
  17. }
  18. public RectTransform GetRectTransform()
  19. {
  20. return _rectTransform;
  21. }
  22. protected override void OnBeforeDestroy()
  23. {
  24. }
  25. }
  26. }