| 123456789101112131415161718192021222324252627282930 |
- /****************************************************************************
- * 2025.5 CHIVA
- ****************************************************************************/
- using System;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework
- {
- public partial class TipsFreeIconItem : UIElement
- {
- private RectTransform _rectTransform;
- private void Awake()
- {
- _rectTransform = GetComponent<RectTransform>();
- }
- public RectTransform GetRectTransform()
- {
- return _rectTransform;
- }
- protected override void OnBeforeDestroy()
- {
- }
- }
- }
|