Files
ft/Client/Assets/Scripts/EventLuckGame/EventLuckyCards/EventLuckyCardsProgressRewradPopupPanel.cs
2026-06-29 21:18:33 +08:00

13 lines
430 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public partial class EventLuckyCardsProgressRewradPopupPanel : MonoBehaviour
{
public float[] progressBar = new float[] { 0.149f, 0.363f, 0.576f, 0.788f, 1f };
public List<EventLuckyCardsProgressRewardItem> rewardItems = new List<EventLuckyCardsProgressRewardItem>();
public Image bar;
public Button btnClose;
}